Created
October 12, 2015 14:39
-
-
Save DarkSector/72063543161d70f03a7b to your computer and use it in GitHub Desktop.
Fuck off no sleep
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 Fuck off nosleep | |
| // @namespace http://your.homepage/ | |
| // @version 0.1 | |
| // @description enter something useful | |
| // @author You | |
| // @match http*://*.reddit.com/* | |
| // @grant none | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js | |
| // ==/UserScript== | |
| $(document).ready(function(){ | |
| var fuckofflist = ['nosleep', 'TwoXChromosomes']; | |
| $.each(fuckofflist, function(index, val){ | |
| $('.thing a[href*="'+val+'"]').closest('.thing').remove(); | |
| }); // end each | |
| }); // end document.ready |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment