try to take over the world!
当前为
// ==UserScript==
// @name CARI
// @namespace http://tampermonkey.net/
// @version 0.7
// @description try to take over the world!
// @author You
// @match http://*.cari.com.my/*
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
// Your code here...
setInterval(function() {
if (jQuery('div[id^=innity_adslot_] a[id^=btn_close_]').length) {
jQuery('div[id^=innity_adslot_] a[id^=btn_close_]')[0].click();
} else {
jQuery('div[id^=innity_adslot_]').remove();
}
jQuery('div[class=kskdDiv]').remove();
jQuery('div[id^=innity_adslot_] iframe').remove();
jQuery('div[id^=sidebox]').remove();
jQuery('div[id=p3x]').remove();
jQuery('div[id=stobg]').remove();
}, 1000);