Greasy Fork is available in English.
去除PC贴吧帖子列表首页的视频广告
当前为
// ==UserScript==
// @name 这TM还叫贴吧?
// @namespace http://greasyfork.icu/scripts/23127
// @homepageURL http://greasyfork.icu/scripts/23127
// @version 0.4
// @description 去除PC贴吧帖子列表首页的视频广告
// @author dazzulay
// @match *://tieba.baidu.com/f?kw=*
// @grant none
// ==/UserScript==
$(function(){
// 20160911 PC贴吧视频
var video_ad_counter = 0;
var video_ad = setInterval(function(){
var video_ad_length = $('.j_m_flash').closest('.j_thread_list').length;
if(video_ad_length>0){
$('.j_m_flash').closest('.j_thread_list').remove();
clearInterval(video_ad);
}
if(video_ad_counter>10){
clearInterval(video_ad);
}
},200);
});