>>575
ブラウザがPCのgoogle chrome限定になるけど
Tampermonkeyって言う拡張機能入れて
↓のスクリプトを入れて有効化すればできる

// ==UserScript==
// @name ホロジュール用
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://schedule.hololive.tv/*
// @grant none
// ==/UserScript==

(function() {
'use strict';
// Your code here...
// $("a[onclick*=嫌いなライバーの名前]").parent().hide();
$("a[onclick*=白上フブキ]").parent().hide();
})();