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
|
{
"manifest_version": 2,
"name": "Thunderbird AI Compose",
"version": "0.1.0",
"description": "Thunderbird Mail Extension that helps you compose emails using AI",
"permissions": [
"compose",
"messagesRead",
"accountsRead",
"storage"
],
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"compose_action": {
"default_title": "Write with AI",
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/16x16.png",
"32": "icons/32x32.png"
}
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}
|