您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name Remove Our R~ // @namespace https://te31.com/ // @version 2025-01-22 // @description try to take over the world! // @author party // @match https://te31.com/rgr/view.php?* // @match https://te31.com/rgr/zboard.php?* // @icon https://www.google.com/s2/favicons?sz=64&domain=te31.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function removeTextFromTextNodes(element) { element.childNodes.forEach((child) => { if (child.nodeType === Node.TEXT_NODE) { child.nodeValue = child.nodeValue .replaceAll(/우리 알~지롱거/g, '') .replaceAll(/우리 알~/g, ''); } else { removeTextFromTextNodes(child); } }); } document.querySelectorAll('td, span, a').forEach((el) => { removeTextFromTextNodes(el); }); })();