-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
73 lines (73 loc) · 1.79 KB
/
Copy pathmanifest.json
File metadata and controls
73 lines (73 loc) · 1.79 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "https://registry.construct.computer/schemas/manifest.json",
"name": "Text Tools",
"description": "Handy text utilities plus a demo of calling platform tools (notifications, calendar) from an app.",
"author": {
"name": "Construct",
"url": "https://github.com/construct-computer"
},
"owners": ["construct-computer"],
"icon": "ui/icon.svg",
"categories": ["utilities"],
"tags": ["text", "encoding", "example", "demo", "gateway"],
"ui": {
"entry": "ui/index.html",
"width": 720,
"height": 640
},
"permissions": {
"storage": "64KB",
"uses": {
"tools": [
"notify.send",
"calendar.list_events"
]
}
},
"tools": [
{
"name": "slugify",
"description": "Convert a string into a URL-safe slug."
},
{
"name": "word_count",
"description": "Count words, characters, and lines in text."
},
{
"name": "json_format",
"description": "Format, minify, or validate JSON."
},
{
"name": "base64",
"description": "Encode or decode Base64 text."
},
{
"name": "hash",
"description": "Generate SHA hashes for text."
},
{
"name": "uuid",
"description": "Generate one or more UUIDs."
},
{
"name": "timestamp",
"description": "Convert between Unix timestamps and ISO dates."
},
{
"name": "url_encode",
"description": "URL-encode or decode text."
},
{
"name": "reverse",
"description": "Reverse a string by Unicode code point."
},
{
"name": "send_notification",
"description": "Send a desktop notification through Construct."
},
{
"name": "list_upcoming_events",
"description": "List upcoming events from the user's primary calendar."
}
]
}