-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (48 loc) · 1.11 KB
/
Copy pathmanifest.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"manifest_version": 2,
"name": "Thunderbird Slack Provider",
"version": "1.2.2",
"description": "Read and send Slack channel messages directly from Thunderbird.",
"author": "thunderbird-slack-provider contributors",
"icons": {
"16": "icons/slack-16.svg",
"32": "icons/slack-32.svg",
"96": "icons/slack-96.svg"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"storage",
"alarms",
"https://slack.com/api/*",
"https://files.slack.com/*",
"https://avatars.slack-edge.com/*"
],
"chat_protocols": [
{
"name": "Slack",
"description": "Connect Thunderbird Chat to your Slack workspace.",
"iconURL": "icons/slack-96.svg",
"hasPassword": false,
"options": [
{
"name": "token",
"label": "API Token",
"type": "string",
"default": ""
}
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"browser_specific_settings": {
"gecko": {
"id": "thunderbird-slack-provider@example.com",
"strict_min_version": "128.0"
}
}
}