NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Enable tvtropes.org buttons // @namespace https://github.com/aschereT // @version 1.0 // @description tvtropes has a weird bug where the night vision button (and others) is disabled unless you log in. This script fixes that. // @author aschereT // @match http://tvtropes.org/* // @grant none // @copyright 2018, aschere (https://openuserjs.org/users/aschere) // @license MIT // ==/UserScript== (function() { 'use strict'; let k=document.getElementsByClassName("nightvision-btn"); for(let b of k)b.classList.remove("disabled"); k=document.getElementsByClassName("sticky-btn"); for(let b of k)b.classList.remove("disabled"); k=document.getElementsByClassName("wideload-btn"); for(let b of k)b.classList.remove("disabled"); })();