Greasy Fork

Greasy Fork is available in English.

ip.cn 删除广告 去广告(加强版)

双重去过大图片广告(文字广告保留)

当前为 2019-08-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         ip.cn 删除广告 去广告(加强版)
// @version      1.0.0
// @description  双重去过大图片广告(文字广告保留)
// @author       ok!
// @namespace    http://tampermonkey.net/
// @match        http*://www.ip.cn/*
// @grant        none
// ==/UserScript==

//第1重去广告
$(document).ready(function() {
$('img#tp').css('height','0');
$('img#tp').css('width','110');
})

//第2重,如果另加载,再去广告
$(document).ready(function() {
    setTimeout(function(){
$('#result').css('display', 'block');
$('#tips').css('display', 'none');
$("#tp").remove();
    }, 700);
});