您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除tapd授权人数超上限弹窗
// ==UserScript== // @name 去除tapd人数上限弹窗 // @namespace https://github.com/Dcatfly/Tampermonkey.git // @version 0.3 // @description 去除tapd授权人数超上限弹窗 // @author Dcatfly // @license MIT // @match https://www.tapd.cn/* // ==/UserScript== (function() { "use strict"; window.onload = function() { function removeModal () { const overlay = document.getElementsByClassName('v-modal')[0]; if (overlay) { overlay.style.display = "none"; } var content = document.querySelectorAll('.el-dialog__wrapper.company-renew-dialog') content?.forEach(item=>{ if (item) { item.style.display = "none"; } }) } removeModal() let count = 20 const timer = setInterval(()=>{ if (count === 0) { clearInterval(timer) } count-- removeModal() },200) }; })();