Greasy Fork

包子漫画去弹窗广告

删广告

// ==UserScript==
// @name         包子漫画去弹窗广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @license      MIT
// @description  删广告
// @author       鲜榨芒果汁
// @match        *://cn.czmanga.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baozimh.com
// @grant        none
// ==/UserScript==

(function() {
    window.onload = function(){
    $("#dlsads").remove();
    $("#drsads").remove();
    $(".div_adhost").remove();
    $(".div_close_ads").click();
    }
})();