您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Join my discord server https://discord.gg/yu4AVeW3yu!
// ==UserScript== // @name Ad remover // @namespace http://tampermonkey.net/ // @version V1.0 // @description Join my discord server https://discord.gg/yu4AVeW3yu! // @author Woltk // @license // @match https://scenexe2.io/ // @icon https://www.google.com/s2/favicons?sz=64&domain=scenexe2.io // @grant none // ==/UserScript== javascript:(function(){ var selectors = [ '#ad-container', '.ad-header', '.ad-sidebar', '.ad-content', '.ad-footer', 'ins.adsbygoogle', 'iframe' ]; for(let i in selectors) { let nodesList = document.querySelectorAll(selectors[i]); for(let i = 0; i < nodesList.length; i++) { let el = nodesList[i]; if(el && el.parentNode) el.parentNode.removeChild(el); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址