您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically redirects you to old.reddit.com. Doesn't break browser history.
// ==UserScript== // @name Reddit - Redirect to old.reddit.com // @namespace amekusa.reddit-redirect // @author amekusa // @version 1.0.0 // @description Automatically redirects you to old.reddit.com. Doesn't break browser history. // @match https://www.reddit.com/* // @match https://reddit.com/* // @exclude https://www.reddit.com/media?* // @exclude https://www.reddit.com/gallery/* // @run-at document-start // @grant none // @license MIT // @homepage https://github.com/amekusa/monkeyscripts // ==/UserScript== window.location.replace(window.location.href.replace(/^https:\/\/(?:www\.)?reddit\.com\//, 'https://old.reddit.com/'));