屏蔽笔趣阁广告

新手写的代码,方法简单暴力,就是屏蔽了笔趣阁网站的所有图片,以此来屏蔽广告。

目前为 2022-01-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         屏蔽笔趣阁广告
// @description  新手写的代码,方法简单暴力,就是屏蔽了笔趣阁网站的所有图片,以此来屏蔽广告。
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       jakor
// @match        https://www.xbiquge.la/*
// @icon         https://img1.baidu.com/it/u=2223429227,4256575164&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var adPic=document.getElementsByTagName('img');
    var i;
		for(i=0;i<adPic.length;i++){
			adPic[i].style.display = "none";};
var adDiv=document.getElementById("HMRichBox");
    adDiv.style.display="none";
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址