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