diff --git a/tampermonkey.js b/tampermonkey.js index 3b13c742..835d20cf 100644 --- a/tampermonkey.js +++ b/tampermonkey.js @@ -233,14 +233,14 @@ // 隐藏插件 api.hidePlugin = () => { if (context.pluginElement) { - context.pluginElement.classList.add("____ds-tampermonkey-hide___"); + context.pluginElement.classList.add("____ds-tampermonkey-hide____"); } } // 显示插件 api.showPlugin = () => { if (context.pluginElement) { - context.pluginElement.classList.remove("____ds-tampermonkey-hide___"); + context.pluginElement.classList.remove("____ds-tampermonkey-hide____"); } }