fextralife, block stream

block the twitch stream on fextralife

目前为 2022-05-21 提交的版本。查看 最新版本

// ==UserScript==
// @name         fextralife, block stream
// @description  block the twitch stream on fextralife
// @version      1.4
// @author       Tobias
// @match        *.wiki.fextralife.com/*
// @license      GPL-3.0-only
// @copyright    Tobias Lauppe
// @namespace    https://github.com/GreyGooseVX/User-Scripts
// ==/UserScript==

let fextraStream = document.querySelector("#sidebar-wrapper .sidebar-nav #fextravideo")
if (fextraStream != null) {
	fextraStream.remove()
}