Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
User Journal

Journal bperkins's Journal: screw tags

I hate tags.

Now the preference that shuts off tags doesn't seem to work anymore.

Fortunately, Greasemonkey can help:

// ==UserScript==
// @name           nuke tags
// @namespace      bperkins
// @description    Get rid of stupid slashdot tags
// @include        http://slashdot.org/*
// ==/UserScript==

var re=new RegExp("tag", "gi");

var divs = document.getElementsByTagName('div');
for (var i = 0; i < divs.length; i++) {
    var div = divs[i];

    if (div.className == 'tag-widget body-widget'  ) {
    div.style.display = "none";
   }

}

This discussion has been archived. No new comments can be posted.

screw tags

Comments Filter:

1 + 1 = 3, for large values of 1.

Working...