Greasy Fork is available in English.

屏蔽斗鱼礼物特效

自动屏蔽斗鱼礼物特效

目前为 2017-07-26 提交的版本。查看 最新版本

// ==UserScript==
// @icon         https://www.douyu.com/favicon.ico
// @name         屏蔽斗鱼礼物特效
// @version      0.8
// @description  自动屏蔽斗鱼礼物特效
// @author       LisonFan
// @match        *://*.douyu.com/*
// @grant        none
// @namespace	 https://lisonfan.com
// ==/UserScript==

(function(){
    'use strict';
    document.onreadystatechange = subSomething;
    function subSomething() {
        if (document.readyState == 'complete'){
            document.getElementById("shie-switch").click();
        }
    }
})();