Reddit Old Redirect

redirect to old reddit

目前为 2023-07-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         Reddit Old Redirect
// @namespace    https://www.reddit.com
// @version      1.0
// @description  redirect to old reddit
// @author       Agreasyforkuser
// @match        https://www.reddit.com/*
// @match        https://new.reddit.com/*
// @icon         https://www.redditstatic.com/desktop2x/img/favicon/android-icon-192x192.png
// @license      MIT
// @run-at       document-start
// ==/UserScript==

if ( window.location.host != "old.reddit.com" ) {
    var oldReddit = window.location.protocol + "//" + "old.reddit.com" + window.location.pathname + window.location.search + window.location.hash;
    window.location.replace (oldReddit);
}

QingJ © 2025

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