Skip to content

Instantly share code, notes, and snippets.

@DarkSector
Created October 12, 2015 14:39
Show Gist options
  • Select an option

  • Save DarkSector/72063543161d70f03a7b to your computer and use it in GitHub Desktop.

Select an option

Save DarkSector/72063543161d70f03a7b to your computer and use it in GitHub Desktop.
Fuck off no sleep
==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