Created
March 16, 2012 05:52
-
-
Save nkmrgk/2048716 to your computer and use it in GitHub Desktop.
Simple Reach Killer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Simple Reach Killer | |
// @namespace http://nkmrgk.tumblr.com/ | |
// @include * | |
// ==/UserScript== | |
function removeTags () { | |
var ng = /simplereach/; | |
var tag, tags = document.getElementsByTagName('div'); | |
var i = tags.length; | |
while (i--) { | |
tag = tags[i]; | |
if (ng.test(tag.id)) { | |
tag.parentNode.removeChild(tag); | |
} | |
} | |
} | |
removeTags(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment