Bitchute Channel Remover

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或关注我们的公众号极客氢云获取最新地址