There are 3 previous versions of this script.
// ==UserScript==
// @name ID Hider
// @namespace http://userscripts.org/users/23652
// @description Hides ID's on specific websites
// @include http://*
// @include https://*
// @include file:*
// @copyright JoeSimmons
// @version 1.0.1
// @license Creative Commons Attribution-Noncommercial 3.0 United States License
// ==/UserScript==
// Remove element by id
function rID(e, pnode) {
if(_e=document.getElementById(e)) {
if(pnode) _e = _e.parentNode;
if(_e) _e.parentNode.removeChild(_e);
}
}
// Remove ID by Website
function removeID(ID, Site, pnode) {
if(new RegExp('^https?:\/\/(www\.)?'+Site).test(window.location.href)) rID(ID, (pnode||false));
}
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
removeID('right', 'userscripts.org/forums/'); // Hide the post search box and active voices
removeID('monitor_label', 'userscripts.org/forums/', true); // Hide the 'watch topic' box
removeID('uservoice-feedback-tab', 'userscripts.org'); // Hide the feedback tab
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////