您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
a way to render the reddit compact page
// ==UserScript== // @name Reddit Render Compact 2023 // @version 1.1 // @license MIT // @description a way to render the reddit compact page // @match https://*.reddit.com/* // @namespace https://greasyfork.org/users/1163486 // ==/UserScript== (function() { 'use strict'; const href = window.location.href; // redirected to old.reddit.com first if not a gallery page or media query if (href.startsWith("https://www.reddit.com/") && !href.includes("/gallery") && !href.includes("/media?")) { const oldUrl = href.replace("https://www.reddit.com/", "https://old.reddit.com/"); window.location.href = oldUrl; } })();