您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
thiiiis many
// ==UserScript== // @name this this many // @namespace http://tampermonkey.net/ // @version 2025-08-24 // @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, mkIs("th@is many")], [/Many/g, mkIs("Th@is Many")], [/MANY/g, mkIs("TH@iS MANY")] ]; function mkIs(str) { return match => str.replace(/@(.)/g, (_, c) => Math.random() < chance ? new Array(1 + Math.random() * 10 | 0).fill(c).join("") : c); } 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); } })();