burbuja.info

This script remove the burbuja.info ad "no hombre no"

当前为 2024-02-12 提交的版本,查看 最新版本

// ==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', '');