Greasy Fork is available in English.
屏蔽部分斗鱼直播间广告
当前为
// ==UserScript==
// @name 斗鱼广告屏蔽
// @namespace http://tampermonkey.net/
// @version 0.0.3
// @description 屏蔽部分斗鱼直播间广告
// @author You
// @match *://www.douyu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var ads = new Array(
".room-ad-video-down",
".valentine1807",
".adsRoot_7c5z4",
".chat-ad"
);
for (var i = 0;i<ads.length; i++){
$(ads[i]).css("display", "none");
}
})();