去你大爷的暂停背景

删除Twitch播放器暂停时的灰色背景

  1. // ==UserScript==
  2. // @name 去你大爷的暂停背景
  3. // @namespace gqqnbig.me
  4. // @version 0.1
  5. // @description 删除Twitch播放器暂停时的灰色背景
  6. // @author gqqnbig
  7. // @match https://www.twitch.tv/videos/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. GM_addStyle(`.player-play-overlay {
  15. background-color: unset !important;
  16. }`);
  17. })();