Greasy Fork 还支持 简体中文。

fextralife, block stream

block the twitch stream on fextralife

  1. // ==UserScript==
  2. // @name fextralife, block stream
  3. // @description block the twitch stream on fextralife
  4. // @version 1.6
  5. // @author Tobias L
  6. // @include *.wiki.fextralife.com/*
  7. // @license GPL-3.0-only
  8. // @namespace https://github.com/WhiteG00se/User-Scripts
  9. // ==/UserScript==
  10.  
  11. let fextraStream = document.querySelector("#video-stream-container")
  12. if (fextraStream != null) {
  13. fextraStream.remove()
  14. }