拼多多商家后台弹窗通知移除

try to take over the world!

目前为 2020-01-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         拼多多商家后台弹窗通知移除
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://mms.pinduoduo.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function(){
        let a = document.querySelector("#umd_kits_message_box");
        //let b = document.querySelector("#umd_kits_PDD_chick");
        let c = document.querySelector("#umd_kits_feedback_icon");
        if(a)a.hidden = true;
        //if(b)b.hidden = true;
        if(c)c.hidden = true;
    },2000)
    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址