From 8ce8e862a7390bee9808c3cc4e860b47cccd5f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E8=89=AF?= <841369634@qq.com> Date: Fri, 18 Apr 2025 11:26:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E8=B0=83=E6=95=B4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tampermonkey.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tampermonkey.js b/tampermonkey.js index 71f9620..728692b 100644 --- a/tampermonkey.js +++ b/tampermonkey.js @@ -190,7 +190,7 @@ // 创建插件div context.pluginElement = document.createElement("div"); context.pluginElement.id = PRE + "plugin"; - context.pluginElement.title = "油猴插件" + (options.name ? ":" + options.name : ""); + context.pluginElement.title = `油猴插件${options.name ? ":" + options.name : ""}\n注:此脚本由 dev-sidecar 注入`; context.pluginElement.className = "___ds-tampermonkey___"; // 根据配置,设置显示或隐藏 const pluginHide = api.GM_getValue("ds_hide");