Greasy Fork is available in English.
Bangumi(小组)页面去除黑幕/马赛克文字
当前为
// ==UserScript== // @name Bangumi 去黑幕 // @namespace [email protected] // @version 0.2 // @description Bangumi(小组)页面去除黑幕/马赛克文字 // @author mytreee // @match https://bangumi.tv/group/topic/* // @match https://bgm.tv/group/topic/* // @match https://chii.in/group/topic/* // @grant GM_addStyle // @run-at document-idle // ==/UserScript== (function() { //令所有span样式为#fff背景色;轻微瑕疵就当作彩蛋叭qaq document.querySelectorAll('span').forEach(e => e.style.backgroundColor = '#fff'); })();