Skip to content

Instantly share code, notes, and snippets.

@abachman
Created May 13, 2009 14:43
Show Gist options
  • Save abachman/111061 to your computer and use it in GitHub Desktop.
Save abachman/111061 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Kill Uservoice
// @namespace adam_bachman
// @description Kill Uservoice Tab
// @include *
// ==/UserScript==
(function () {
var uservoice_tab = document.getElementById("uservoice-feedback-tab");
if (uservoice_tab) {
uservoice_tab.parentNode.removeChild(uservoice_tab);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment