NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name TORN: Bazaar Filter // @version 10 // @author DeKleineKobini // @match https://www.torn.com/* // @license MIT // @grant GM_info // ==/UserScript== const text = `This version (OpenUserJS) of ${GM_info.script.name} is no longer available.\nInstall the GreasyFork version after clicking OK.`; const greasy = "https://greasyfork.org/en/scripts/390946-torn-bazaar-filter"; if (confirm(text)) { window.open(greasy, "_blank"); }