自动关闭扇贝的提示
当前为
// ==UserScript==
// @name shanbey-helper
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 自动关闭扇贝的提示
// @author wlb
// @match https://web.shanbay.com/wordsweb/
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.AppletTip_close__2lEIB').forEach((node)=>node.click());
})();