DeKleineKobini / TORN: Item Value

// ==UserScript==
// @name         TORN: Item Value
// @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/391612-torn-item-value";

if (confirm(text)) {
    window.open(greasy, "_blank");
}