您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
f**king uview-plus
// ==UserScript== // @name F**king uview-plus // @namespace http://tampermonkey.net/ // @version 2025-09-30 // @description f**king uview-plus // @author f**king uview-plus // @match https://uview-plus.jiangruyi.com/* // @icon https://uview-plus.jiangruyi.com/common/logo.png // @icon https://uview-plus.jiangruyi.com/common/logo.png // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; localStorage.setItem("adExpire2", Date.parse(new Date()) / 1e3 + 43200); Object.defineProperty(window, "showAd", { get: () => false, set: () => {}, configurable: false }); function removeGoogleAdsScripts() { document.querySelectorAll('script[src*="googlesyndication.com"], script[src*="fundingchoicesmessages.google.com"]').forEach(el => el.remove()); } function removeGoogleAdFrames() { document.querySelectorAll('iframe[src*="googlesyndication.com"], iframe[src*="doubleclick.net"]').forEach(el => el.remove()); } function removeTipsAd(){ document.querySelectorAll('.showV2Tips').forEach(el => el.remove()); } let observer = new MutationObserver(() => { removeGoogleAdsScripts(); removeGoogleAdFrames(); removeTipsAd(); }); observer.observe(document.body, { childList: true, subtree: true }); removeGoogleAdsScripts(); removeGoogleAdFrames(); removeTipsAd(); const el = document.querySelectorAll('.el-dialog'); el.forEach( e => { e.style.display = 'none' }) })();