您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
uview删除强制观看广告
// ==UserScript== // @name uview删除广告 // @namespace https://gitee.com/canotf // @version 2024-12-17 // @description uview删除强制观看广告 // @author cacode // @match *uview-plus.jiangruyi.com/* // @match *uiadmin.net/* // @icon https://uview-plus.jiangruyi.com/common/logo.png // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; setInterval(()=>{ const dialog__wrapper = document.getElementsByClassName("el-dialog__wrapper"); if(dialog__wrapper.length > 0){ dialog__wrapper[0].style.zIndex='-1'; } const modal = document.getElementsByClassName("v-modal"); if(modal.length > 0){ modal[0].style.zIndex='-1'; } },100) // Your code here... })();