修复无法弹出绑定视频号的问题
当前为
// ==UserScript==
// @name 微信小店助手
// @license MIT
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 修复无法弹出绑定视频号的问题
// @author alexskky
// @match https://store.weixin.qq.com/shop/softchain/home
// @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){window.__MICRO_APP_PROXY_WINDOW__.rawWindow.document.getElementsByClassName('weui-desktop-dropdown-menu')[0].style.display='block';}, 10000);
})();