Skip to content

Instantly share code, notes, and snippets.

@AlD
Created February 13, 2012 16:27
Show Gist options
  • Save AlD/1818005 to your computer and use it in GitHub Desktop.
Save AlD/1818005 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @match https://*/sgdadmin/*
// ==/UserScript==
var a = document.all;
for (var i = 0; i < a.length; i++) {
var e = a[i];
if(e.id.match("Form:")) {
e.hidden = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment