添加版本号。

scripts
王良 7 months ago
parent 15f9dea117
commit d868976e4d

@ -16,6 +16,7 @@
*/ */
'use strict'; 'use strict';
(function () { (function () {
const version = "0.1.0";
const PRE = "DS-Tampermonkey:"; // 前缀 const PRE = "DS-Tampermonkey:"; // 前缀
const MENU_ID_PRE = PRE + "menu-"; const MENU_ID_PRE = PRE + "menu-";
@ -224,9 +225,9 @@
api.createPluginDiv(options); api.createPluginDiv(options);
context.initialized = true; context.initialized = true;
console.log("ds_tampermonkey: initialization completed篡改猴插件初始化完成篡改猴图标已显示在页面右侧鼠标移到上面可展示功能列表") console.log(`ds_tampermonkey_${version}: initialization completed篡改猴插件初始化完成篡改猴图标已显示在页面右侧鼠标移到上面可展示功能列表`)
} catch (e) { } catch (e) {
console.error("ds_tampermonkey: initialization failed篡改猴插件初始化失败:", e); console.error(`ds_tampermonkey_${version}: initialization failed篡改猴插件初始化失败:`, e);
} }
}; };
@ -355,7 +356,7 @@
// param1 // param1
let options = typeof details_or_text === "string" ? { text: details_or_text } : details_or_text; let options = typeof details_or_text === "string" ? { text: details_or_text } : details_or_text;
if (typeof options !== "object") { if (typeof options !== "object") {
console.error("GM_notification: 无效的参数值details_or_text = " + details_or_text); console.error(`ds_tampermonkey_${version}: GM_notification: 无效的参数值details_or_text = ` + details_or_text);
return; return;
} }
// param2 // param2
@ -364,19 +365,19 @@
} else if (typeof ondone_or_title === "function") { } else if (typeof ondone_or_title === "function") {
options.ondone = ondone_or_title; options.ondone = ondone_or_title;
} else if (ondone_or_title != null) { } else if (ondone_or_title != null) {
console.warn("GM_notification: 无效的参数值ondone_or_title = " + ondone_or_title); console.warn(`ds_tampermonkey_${version}: GM_notification: 无效的参数值ondone_or_title = ` + ondone_or_title);
} }
// param3 // param3
if (typeof image === "string") { if (typeof image === "string") {
options.image = image; options.image = image;
} else if (onclick != null) { } else if (onclick != null) {
console.warn("GM_notification: 无效的参数值image = " + image); console.warn(`ds_tampermonkey_${version}: GM_notification: 无效的参数值image = ` + image);
} }
// param4 // param4
if (typeof onclick === "function") { if (typeof onclick === "function") {
options.onclick = onclick; options.onclick = onclick;
} else if (onclick != null) { } else if (onclick != null) {
console.warn("GM_notification: 无效的参数值onclick = " + onclick); console.warn(`ds_tampermonkey_${version}: GM_notification: 无效的参数值onclick = ` + onclick);
} }
let text = options.text; let text = options.text;
@ -450,5 +451,5 @@
module.exports = api; module.exports = api;
} }
console.log("ds_tampermonkey: completed") console.log(`ds_tampermonkey_${version}: completed`)
})(); })();
Loading…
Cancel
Save