您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clean the ads on the 1point3acres.com 移除一亩三分地上的广告
当前为
// ==UserScript== // @name 1point3acres ads remover // @namespace http://tampermonkey.net/ // @version v0.1 // @description Clean the ads on the 1point3acres.com 移除一亩三分地上的广告 // @author phy // @match www.1point3acres.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn // @run-at document-idle // @license GNU GPLv3 // ==/UserScript== (function() { 'use strict'; // Remove the ads on the top Array.prototype.forEach.call( document.querySelectorAll("#ad-container"), function(element) { element.remove(); }); // Remove the ads on the right side Array.prototype.forEach.call( document.querySelectorAll(".sd"), function(element) { element.remove(); }); // Remove the ads inside user's comments Array.prototype.forEach.call( document.querySelectorAll(".mx-auto"), function(element) { //element.style.display = "none"; element.remove(); }); // Remove the ads below user's comments Array.prototype.forEach.call( document.querySelectorAll("td.plc.plm"), function(element) { element.remove(); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址