// ==UserScript== // @name CDRomance -> RetroGameTalk Repo // @description Automatically get redirected from the old CDRomance site to the new RetroGameTalk Repo. // @version 1.0 // @author AdamBlast // @match https://cdromance.org // @match https://cdromance.org/* // @match https://cdromance.com // @match https://cdromance.com/* // @run-at document-start // @license MIT // @namespace https://greasyfork.org/users/700340 // ==/UserScript== (function() { let newUrl = location.href; newUrl = newUrl.replace("cdromance.com", "retrogametalk.com/repository"); newUrl = newUrl.replace("cdromance.org", "retrogametalk.com/repository"); location.replace(newUrl); })();