Forked from tdhopper's version to make it installable directly into Tampermonkey or Greasemonkey.
Click here!
Forked from tdhopper's version to make it installable directly into Tampermonkey or Greasemonkey.
Click here!
// ==UserScript== | |
// @name Distraction-free Twitter | |
// @description Remove Discover button and side menus | |
// @namespace https://github.com/tdhopper | |
// @match https://twitter.com/* | |
// @version 0.1 | |
// @require http://code.jquery.com/jquery-latest.js | |
// ==/UserScript== | |
f = function(){ | |
$(".topics").hide(); | |
$(".module").each(function(e){ | |
$(this).css({ 'opacity' : 0 }); | |
$(this).find('a').on('click.myDisable', function() { return false; }); | |
}); | |
} | |
$(document).ready(f); | |
setInterval(f, 500); |