您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
resets new reddit ui to the good one
// ==UserScript== // @name Reddit old ui redirecter // @namespace http://tampermonkey.net/ // @version v1.0.2 // @description resets new reddit ui to the good one // @author $krampusgg0 on cashapp // @match *://reddit.com/* // @match *://www.reddit.com/* // @match *://sh.reddit.com/* // @exclude *://www.reddit.com/media* // @exclude *://sh.reddit.com/media* // @icon https://www.redditstatic.com/desktop2x/img/favicon/android-icon-192x192.png // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function() { 'use strict'; window.location.href = window.location.href.replace(/(www|sh)\.reddit\.com/, "new.reddit.com");; })();