您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the given list of channels from the user page
// ==UserScript== // @name Bitchute Channel Remover // @namespace http://tampermonkey.net/ // @version 0.2 // @description Removes the given list of channels from the user page // @author MeyimAgalot // @match https://www.bitchute.com/ // @grant none // ==/UserScript== // Blocked channels are not bad, just used as an example // (except Geeks + Gamers who are very censor-happy, so feel free to censor them too :) (function() { 'use strict'; var aTags=document.getElementsByTagName('a'); var arr_remove = ["Geeks + Gamers", "tv almassora", "Kanal für Wahnsinnige im Endstadium"]; for (var i = 0; i < aTags.length; i++) { if (arr_remove.includes(aTags[i].textContent)) { var Atag=aTags[i].closest('div.text-center'); Atag.remove(); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址