2022/10/7 上午10:06:23
// ==UserScript== // @name 屏蔽芊芊精典弹窗 // @namespace Violentmonkey Scripts // @match https://myqqjd.com/* // @grant none // @version 1.0 // @author - // @description 2022/10/7 上午10:06:23 // @license MIT // ==/UserScript== function removeTip(){ document.getElementsByClassName('adblock_title')[0]?.parentElement?.parentElement?.parentElement?.parentElement?.parentElement?.parentElement?.parentElement?.remove() } setInterval(removeTip,1000)