Greasy Fork is available in English.
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();
}
}
})();