Greasy Fork

来自缓存

Greasy Fork is available in English.

直播吧去广告

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

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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();
    }
})();