// ==UserScript== // @name ao3 hide certain tags // @namespace https://greasyfork.org/en/users/36620 // @version 0.3.1 // @description suppress tags that aren't capitalized // @author scriptfairy // @include http://archiveofourown.org/*works* // @include https://archiveofourown.org/*works* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/18655/ao3%20hide%20certain%20tags.user.js // @updateURL https://update.greasyfork.icu/scripts/18655/ao3%20hide%20certain%20tags.meta.js // ==/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($) { $('