-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
55 lines (55 loc) · 1.47 KB
/
manifest.json
File metadata and controls
55 lines (55 loc) · 1.47 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"type": "service",
"name": "Telegram Notes",
"id": "telegram-notes",
"description": "Telegram bot that saves messages as notes in your notebook. Send text, links, or images — they'll appear on a dedicated page.",
"version": "0.1.0",
"author": "Moonstone",
"icon": "📨",
"entry": "service.py",
"auto_start": false,
"preferences": [
{
"key": "bot_token",
"label": "Telegram Bot Token",
"type": "string",
"description": "Get one from @BotFather",
"required": true
},
{
"key": "proxy_url",
"label": "Proxy URL",
"type": "string",
"description": "Optional http://, https://, or socks5:// proxy for Telegram requests",
"default": ""
},
{
"key": "allowed_users",
"label": "Allowed User IDs",
"type": "string",
"description": "Comma-separated Telegram user IDs (leave empty to allow all)",
"default": ""
},
{
"key": "target_page",
"label": "Target Page",
"type": "string",
"description": "Page where notes are saved",
"default": "Inbox:Telegram"
},
{
"key": "date_subpages",
"label": "Daily Sub-pages",
"type": "boolean",
"description": "Create daily sub-pages (e.g. Inbox:Telegram:2026-02-24)",
"default": true
},
{
"key": "todo_page",
"label": "ToDo Page",
"type": "string",
"description": "Page where /todo commands are saved",
"default": "Inbox:Tasks"
}
]
}