Greasy Fork

店小秘去弹窗

店小秘去弹窗0.1

当前为 2023-04-01 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
    // 通过获取元素的父节点,然后用 removeChild() 方法删除指定的元素
    const elementA = document.querySelector("#expireVipShowInfoModal");
    elementA.parentNode.removeChild(elementA);
})();