您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Deletes annoying Crunchyroll spam bots on the client
当前为
// ==UserScript== // @name Crunchyroll Spam Blocker // @namespace http://greasyfork.org/ // @version 1.0.0 // @description Deletes annoying Crunchyroll spam bots on the client // @author business-goose // @match https://www.crunchyroll.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=crunchyroll.com // @grant none // @license The Unlicense // ==/UserScript== (function() { 'use strict'; var comments = document.getElementsByClassName("guestbook-list cf") var blockedPhrases = ["earn", "work", "making", "$", "💵", "𝐰𝐨𝐫𝐤", "𝐦𝐚𝐤𝐞 𝐦𝐨𝐫𝐞 ", "£"] setInterval(() => { for(var i = 0; i < comments.length; i++) { const element = comments[i] blockedPhrases.forEach((blocked) => { if(element.innerText.toLowerCase().includes(blocked)) { element.remove() } }) } }, 200)}) ();