屏蔽部分斗鱼直播间广告
当前为
// ==UserScript==
// @name 斗鱼广告活动屏蔽
// @namespace http://tampermonkey.net/
// @version 0.0.11
// @description 屏蔽部分斗鱼直播间广告
// @author hulala
// @match *://www.douyu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var time = 0;
var removeAD = function(){
var gifts = $("#listId").parent().parent();
var ads = new Array(
".room-ad-video-down",
".valentine1807",
".adsRoot_7c5z4",
".chat-ad",
".room-ad-bottom",
"#js-chat-notice",
".column.rec",
"#js-recommand",
".recommendAD-824567",
".recommendApp-cbeff7",
".broadcastDiv-343e1a",
".PaladinPop",
".no-login"
);
for (var i = 0;i<ads.length; i++){
$(ads[i]).css("display", "none");
}
gifts.css("display","none");
}
removeAD();
var timer = window.setInterval(function() {
removeAD();
time++;
if(time >= 15 && timer) {
window.clearInterval(timer);
timer = null;
}
}, 3000);
})();