您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
屏蔽某魔怔定型文
当前为
// ==UserScript== // @name 魔怔定型文屏蔽器 // @namespace https://pbb.akioi.ml/ban-shanoa // @version 0.1 // @description 屏蔽某魔怔定型文 // @author tiger0132 // @match https://pbb.akioi.ml/ // @grant none // ==/UserScript== (function() { 'use strict'; var oldFmtFeed = fmtFeed; fmtFeed = feed => { const content = feed.content_markdown; const node = $(oldFmtFeed(feed)); if (content.includes('夏小姐') || content.includes('夏诺雅')) { node[0].id = `feed-${feed.id}`; node[0].style.opacity = 0.3; node.hide(); return `<p style="text-align: center; color: gray; opacity: 0.3; " onclick="$('#feed-${feed.id}').show(); $(this).hide()">隐藏了 ${feed.user.name} 的一条犇犇,点击显示</p>` + node[0].outerHTML; } else return node[0].outerHTML; }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址