您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script removes the elchapuzasinformatico.com ad's
// ==UserScript== // @name elchapuzasinformatico // @namespace anonDeveloper // @description This script removes the elchapuzasinformatico.com ad's // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js // @grant none // @version 1.0 // @license MIT // @match // @run-at document-body // add to your adblock to skip the cookies message https://clickiocmp.com/* // clickiocdn.com and wp-content/cache/min/1/t/consent_217011.js // https://gist.github.com/tylerdukedev/d0b3fbacb37897da2af58c1d91a7f36c // ==/UserScript== $('div[class^="ads_single_top_desktop"]').remove(); $('div[class^="ads_single_firstp_desktop"]').remove(); $('div[class^="ads_single_firstp_movil"]').remove();