aboutsummaryrefslogtreecommitdiff
path: root/src/manifest.json
blob: e61aad40e2afe2b8472a74b3c1c54422c258f994 (plain)
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
{
    "manifest_version": 3,
    "name": "Thunderbird AI Compose",
    "version": "0.1.0",
    "description": "Thunderbird Mail Extension that helps you compose emails using AI",
    "permissions": [
        "compose",
        "messagesRead",
        "accountsRead",
        "storage",
        "commands"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Write with AI",
        "default_popup": "popup/popup.html"
    },
    "options_ui": {
        "page": "options/options.html",
        "open_in_tab": false
    },
    "commands": {
        "open-popup": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "Open AI composer popup"
        }
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}