NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Nifty title formater // @match https://www.nifty.org/nifty/*/*/* // @run-at document-idle // @version 1 // @grant none // @license GPL-3.0-or-later // ==/UserScript== if (document.title == ""){// document has no title // defualt title document.title = "Nifty" // add subject document.title +=" - " + document .getElementsByTagName("pre")[0] .innerText .match("Subject: (.*)")[1] } // add type {lesbian, gay ,...} const type=document.location.pathname.split("/")[2] if (type != null) document.title +=" ["+type+"]";