Reddit Old Redirect 🔙

redirect to old reddit

  1. // ==UserScript==
  2. // @name Reddit Old Redirect 🔙
  3. // @namespace https://www.reddit.com
  4. // @version 1.5
  5. // @description redirect to old reddit
  6. // @author Agreasyforkuser
  7. // @match https://*.reddit.com/*
  8. // @exclude https://*.reddit.com/poll/*
  9. // @exclude https://*.reddit.com/gallery/*
  10. // @exclude https://www.reddit.com/media*
  11. // @exclude https://chat.reddit.com/*
  12. // @exclude https://www.reddit.com/appeal*
  13. // @exclude https://embed.reddit.com/*
  14. // @icon https://www.redditstatic.com/desktop2x/img/favicon/android-icon-192x192.png
  15. // @license MIT
  16. // @run-at document-start
  17. // ==/UserScript==
  18.  
  19. if ( window.location.host != "old.reddit.com" ) {
  20. var oldReddit = window.location.protocol + "//" + "old.reddit.com" + window.location.pathname + window.location.search + window.location.hash;
  21. window.location.replace (oldReddit);
  22. }
  23.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址