NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Remove WoW subreddit spoilers // @namespace https://www.reddit.com/r/wow // @description Removes the spoliers on the WoW subreddit // @include https://www.reddit.com/r/wow* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @version 1 // @grant none // ==/UserScript== function removeSpoilers(){ $('.linkflair-spoiler a.title').css('cssText', 'color: blue !important; background:none; text-shadow:none;'); } removeSpoilers();