您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script remove the burbuja.info ad "no hombre no"
当前为
// ==UserScript== // @name burbuja.info // @namespace anonDeveloper // @description This script remove the burbuja.info ad "no hombre no" // @run-at document-load // @version 1.0 // @license MIT // @include https://www.burbuja.info/inmobiliaria/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // require https://gist.github.com/raw/2625891/waitForKeyElements.js // https://api.jquery.com/remove/ // Block in your adblock https://vm.s3wfg.com/js/vortexloader.js // Block in your adblock https://static.sunmedia.tv/integrations/fe69655d-ae1f-4218-bea4-8489a0ec1f5c/fe69655d-ae1f-4218-bea4-8489a0ec1f5c.js // @grant GM_addStyle // @grant GM.getValue // ==/UserScript== $('style').each(function( index ) { $(this).remove(); }); $('p').each(function( index ) { $(this).remove(); }); $('body > div:nth-last-child(-n +3)>div>a').remove(); $('div[class^="fa-2x"]').remove(); $('div[style^="text-align:center;margin:10px auto;"]').remove(); $('span[class^=__web-inspector-hide-shortcut__"]').remove(); $('div[style*="font-size"]').css('font-size', '');