diff options
| author | Bobby <[email protected]> | 2025-09-22 23:35:21 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-09-22 23:35:21 +0530 |
| commit | 58e1d9d18a174a28102f50bf483abb57696e4aec (patch) | |
| tree | 578f347d6d9834a49c89743bea42d24d96cdd340 /src | |
| download | thunderbird-ai-compose-58e1d9d18a174a28102f50bf483abb57696e4aec.tar.xz thunderbird-ai-compose-58e1d9d18a174a28102f50bf483abb57696e4aec.zip | |
init: setup basic deps and manifest
Diffstat (limited to 'src')
| -rw-r--r-- | src/manifest.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/manifest.json b/src/manifest.json new file mode 100644 index 0000000..e61aad4 --- /dev/null +++ b/src/manifest.json @@ -0,0 +1,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]" + } + } +}
\ No newline at end of file |
