NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name TORN: High/Low Helper
// @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/391481-torn-high-low-helper";
if (confirm(text)) {
window.open(greasy, "_blank");
}