// ==UserScript== // @name URL Redirector // @description Redirect URLs // @match https://www.reddit.com/* // @match https://imgur.com/* // @version 1.0.0 // ==/UserScript== if (window.location.hostname === "imgur.com") { window.location.href = "https://rimgo.lunar.icu" + window.location.pathname + window.location.search; } else if (window.location.hostname === "www.reddit.com") { window.location.href = "https://discuss.whatever.social" + window.location.pathname + window.location.search; }