Greasy Fork is available in English.
自动屏蔽所有斗鱼直播间弹幕
当前为
// ==UserScript==
// @name 斗鱼无弹幕
// @namespace http://tampermonkey.net/
// @version 0.11
// @description 自动屏蔽所有斗鱼直播间弹幕
// @author arryboom
// @match *://www.douyu.com/*
// @require https://code.jquery.com/jquery-latest.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
var time = 0;
setTimeout(function(){$("div[class^='showdanmu-']").click();console.log("###Douyu###");},5000);
setTimeout(function(){
status=$("span[class^='shie-input']").attr("data-shield-status");
if (status=="0"){
$("span[class^='shie-input']").children(".shie-checkbox-icon").click();
};},5000);
/*$('.PlayerCaseSub-Main').hide();隐藏聊天区*/
})();