您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A script that improves your mtslash user experience by filtering certain words.
// ==UserScript== // @name 随缘居屏蔽词插件 // @version 0.1 // @description A script that improves your mtslash user experience by filtering certain words. // @match http*://mtslash.me/* // @author yelllowgomi // @license MIT // @grant none // @namespace https://greasyfork.org/users/1176793 // ==/UserScript== (function() { 'use strict'; // 把屏蔽词加入下面的 list 中,注意要使用英文标点符号 // 比如:['underage','双性'] let blockWordsArray = ['']; let elementsArray = Array.from(document.getElementsByTagName('tbody')); elementsArray = elementsArray.filter(el => el.id && el.id.startsWith('normalthread_')); for (let el of elementsArray) { let elementText = el.textContent.toLowerCase(); for (let word of blockWordsArray) { if (elementText.includes(word.toLowerCase())) { let targetEl = el.querySelector('.s.xst'); targetEl.textContent = `已屏蔽一条包含"${word}"的内容`; targetEl.style = "color:gray"; console.log(`已屏蔽一条包含"${word}"的内容`) break; } } } })();