您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirect any new reddit url except for "/media", "/gallery" or "/poll" to old reddit. Fixes the "Funny Hat" redirect.
- // ==UserScript==
- // @name Old Reddit Redirect (with Funny Hat fix)
- // @namespace http://asleepysamurai.com
- // @version 0.1
- // @description Redirect any new reddit url except for "/media", "/gallery" or "/poll" to old reddit. Fixes the "Funny Hat" redirect.
- // @author Balaganesh Damodaran
- // @match https://www.reddit.com/*
- // @match https://reddit.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=reddit.com
- // @grant none
- // @license BSD Zero Clause License
- // ==/UserScript==
- (function() {
- 'use strict';
- if(!['/gallery','/media','/poll'].find(pathPrefix => window.location.pathname.toLowerCase().startsWith(pathPrefix))){
- window.location.host = 'old.reddit.com'
- }
- })();