// ==UserScript== // @name ao3 hide certain tags // @namespace https://greasyfork.org/en/users/36620 // @version 0.3 // @description suppress tags that aren't capitalized // @author scriptfairy // @match http*://archiveofourown.org/*works* // @grant none // @downloadURL none // ==/UserScript== // function isCap(str) { if (/[\W\d]/.test(str[0])) {return true;} else if (str[0] !== str[0].toLowerCase()) {return true;} else {return false;} } // (function($) { $('