Greasy Fork is available in English.
自动屏蔽斗鱼礼物特效
当前为
// ==UserScript==
// @icon https://www.douyu.com/favicon.ico
// @name 屏蔽斗鱼礼物特效
// @version 0.6.1
// @description 自动屏蔽斗鱼礼物特效
// @author LisonFan
// @match https://*.douyu.com/*
// @grant none
// @namespace https://lisonfan.com
// ==/UserScript==
document.onreadystatechange = subSomething;
function subSomething() {
if (document.readyState == 'complete'){
document.getElementById("shieSwitch").click();
}
}