您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
thiiiis many
当前为
// ==UserScript== // @name this many // @namespace http://tampermonkey.net/ // @version 2025-08-22 // @description thiiiis many // @license WTFPL // @author winfy // @match https://*/* // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; const chance = 0.3; const renames = [ [/many/g, "this many"], [/Many/g, "This Many"], [/MANY/g, "THIS THIS MANY"] ]; function subst(text) { for (const [p, sub] of renames) { text = text.replace(p, match => Math.random() < chance ? sub instanceof Function ? sub.apply(this, arguments) : sub : match); } return text; } const walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT); let node; while ((node = walker.nextNode())) { node.data = subst(node.data); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址