-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
38 lines (38 loc) · 1016 Bytes
/
Copy pathplugin.json
File metadata and controls
38 lines (38 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"id": "quiet-kill",
"name": "Quiet Kill",
"author": "𝗠𝗘𝗢𝗪𝗻𝗮 💅",
"version": "1 [lua-plugin]",
"description": "Kills background user apps with one tap. Keeps whitelisted apps alive. Manual trigger only.",
"license": "MIT",
"quick_action": {
"function": "kill_now",
"label": "Kill Now",
"labels": {
"zh": "立即清理",
"ja": "今すぐ停止"
}
},
"config": [
{
"key": "whitelist",
"label": "Whitelist (comma-separated packages)",
"labels": {
"zh": "白名单(逗号分隔的包名)",
"ja": "ホワイトリスト(カンマ区切りのパッケージ名)"
},
"type": "text",
"default": ""
},
{
"key": "dry_run",
"label": "Dry run (log only, do not kill)",
"labels": {
"zh": "模拟运行(仅记录,不停止)",
"ja": "ドライラン(ログのみ、停止しない)"
},
"type": "bool",
"default": true
}
]
}