您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically add context to reddit links
// ==UserScript== // @name Reddit Context // @namespace http://srsutherland.dev // @version 2019.04.08.1a // @description Automatically add context to reddit links // @author srsutherland // @match *://*.reddit.com/* // @grant none // ==/UserScript== (function() { $(document.body).on('mousedown', 'a[href*="/comments"]', (e) => { const target = e.target; const url = new URL(target.href, location.href); const commentRegex = /https?:\/\/(www|old|new)\.reddit\.com\/r\/\w+\/comments\/\w+\/\w+\/\w+\// const contextDefault = 5; // no need to proceed if depth already exists in the query string if (url.searchParams.has('context')) {return}; if (url.href.match(commentRegex)) { url.searchParams.set('context', contextDefault); target.removeAttribute('data-inbound-url'); target.href = url.href; } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址