Greasy Fork

直播吧去广告

直播吧PC版去首页,新闻详情页广告

// ==UserScript==
// @name         直播吧去广告
// @namespace    https://www.zhibo8.cc/
// @icon         https://www.google.com/s2/favicons?domain=zhibo8.cc
// @version      1.0
// @description  直播吧PC版去首页,新闻详情页广告
// @author       老胡
// @match        https://www.zhibo8.cc
// @match        https://www.zhibo8.cc/*
// @match        https://news.zhibo8.cc/*
// @require      http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    clearHomePageAds();
    clearNewsPageAds();

    function clearHomePageAds() {
        clearHomeDaysBetweenAds();
        clearHomeAppDownloadAds();
        clearHomeSideAds();
        var t = setInterval(function () {
            clearHomeHeaderBannerAds();
        }, 50);
        clearNewsDetailAds();
    }

    function clearNewsPageAds() {
        clearNewsSideAds();
    }

    function clearHomeDaysBetweenAds() {
        $('.advert').remove();
    }

    function clearHomeHeaderBannerAds() {
        var headBannerAds = $('.adv_content');
        if(headBannerAds) {
            headBannerAds.remove();
        } else {
            clearInterval(t);
        }
    }

    function clearHomeAppDownloadAds() {
        $('.pop-autoapp').remove();
    }

    function clearHomeSideAds() {
        $('.ad_box_250').remove();
    }

    function clearNewsSideAds() {
        $('.xw_right').remove();
    }

    function clearNewsDetailAds() {
        $('#BAIDU_DUP_fp_wrapper').remove();
        $('.advertframe').remove();
        $('#iframe-ad').remove();
    }
})();