// ==UserScript== // @name 斗鱼无弹幕 // @namespace http://tampermonkey.net/ // @version 0.0.11 // @description 自动屏蔽所有斗鱼直播间弹幕 // @author arryboom // @match *://www.douyu.com/* // @require https://code.jquery.com/jquery-latest.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var time = 0; setTimeout(function(){$("div[class^='showdanmu-']").click();console.log("###Douyu###");},8000); 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();隐藏聊天区 })();