JS: Reduce

This commit is contained in:
起个名字好难的喵
2025-11-02 17:06:24 +08:00
parent 58ed29e248
commit 61c943f9a2
11 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
(async function () {
notification.Send(settings.content);
})();

View File

@@ -0,0 +1,8 @@
{
"manifest_version": 1,
"name": "发送通知",
"version": "1.0",
"description": "发送通知,可以在调度器中使用。",
"settings_ui": "settings.json",
"main": "main.js"
}

View File

@@ -0,0 +1,8 @@
[
{
"name": "content",
"type": "input-text",
"label": "通知内容",
"default": "请前往 JS脚本自定义设置 中修改内容。"
}
]