您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name CARI // @namespace http://tampermonkey.net/ // @version 0.17 // @description try to take over the world! // @author You // @match http://*.cari.com.my/* // @match https://*.cari.com.my/* // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; // Your code here... setInterval(function() { if (jQuery) { if (jQuery('div[id^=innity_adslot_] a[id^=btn_close_]').length) { jQuery('div[id^=innity_adslot_] a[id^=btn_close_]')[0].click(); } jQuery('div[class=kskdDiv]').remove(); jQuery('div[id^=innity_adslot_]').remove(); jQuery('div[id^=innity_adslot_] iframe').remove(); jQuery('div[id^=sidebox]').remove(); jQuery('div[id=p3x]').remove(); jQuery('div[id=stobg]').remove(); jQuery('div[id=asto_box]').remove(); jQuery('span[id=ZZRighthead]').click(); jQuery('div[id^=div-gpt-ad-] div[id=delayclosebutton]').click(); jQuery('div[id^=div-gpt-ad-]').remove(); jQuery('div[id^=wechat] > div').click(); jQuery('div[id=cari_sto_inhouse] > a:first').click(); jQuery('div#fp-ad-container').css({ display: 'none' }); jQuery('div#cari_inarticle_videodiv').css({ display: 'none' }); } }, 1000);