Advertisement
AdamBlast

[UserScript] CDRomance -> RetroGameTalk Repo

Mar 21st, 2025 (edited)
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        CDRomance -> RetroGameTalk Repo
  3. // @description Automatically get redirected from the old CDRomance site to the new RetroGameTalk Repo.
  4. // @version     1.0
  5. // @author      AdamBlast
  6. // @match       https://cdromance.org
  7. // @match       https://cdromance.org/*
  8. // @match       https://cdromance.com
  9. // @match       https://cdromance.com/*
  10. // @run-at      document-start
  11. // @license     MIT
  12. // @namespace   https://greasyfork.org/users/700340
  13. // ==/UserScript==
  14.  
  15. (function() {
  16.     let newUrl = location.href;
  17.     newUrl = newUrl.replace("cdromance.com", "retrogametalk.com/repository");
  18.     newUrl = newUrl.replace("cdromance.org", "retrogametalk.com/repository");
  19.     location.replace(newUrl);
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement