// ==UserScript== // @name 店小秘去弹窗 // @license MIT // @namespace https://baidu.com // @version 0.1 // @description 店小秘去弹窗0.1 // @author ibryang // @match https://www.dianxiaomi.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=dianxiaomi.com // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 通过获取元素的父节点,然后用 removeChild() 方法删除指定的元素 const elementA = document.querySelector("#expireVipShowInfoModal"); elementA.parentNode.removeChild(elementA); })();