ThunderAI/manifest.json
2026-04-20 23:10:39 +02:00

77 lines
2 KiB
JSON

{
"manifest_version": 2,
"name": "ThunderAI",
"description": "__MSG_extensionDescription__",
"version": "4.1.0pre4",
"author": "Mic (m@micz.it)",
"homepage_url": "https://micz.it/thunderbird-addon-thunderai/",
"browser_specific_settings": {
"gecko": {
"id": "thunderai@micz.it",
"strict_min_version": "140.0"
}
},
"message_display_action": {
"default_title": "__MSG_menu_title__",
"default_icon": "images/icon-32px.png",
"default_popup": "popup/mzta-popup.html"
},
"compose_action": {
"default_title": "__MSG_menu_title__",
"default_icon": "images/icon-32px.png",
"default_popup": "popup/mzta-popup.html"
},
"permissions": [
"compose",
"messagesRead",
"storage",
"menus",
"messagesModify",
"tabs",
"activeTab",
"accountsRead",
"downloads",
"messagesTagsList"
],
"optional_permissions": [
"addressBooks",
"clipboardRead",
"messagesTags",
"messagesUpdate",
"messagesMove",
"https://*.chatgpt.com/*",
"https://*.openai.com/*",
"https://*.anthropic.com/*",
"https://*/*",
"http://*/*",
"<all_urls>"
],
"background": {
"page": "mzta-background.html"
},
"icons": {
"64": "images/icon.png",
"32": "images/icon-32px.png",
"16": "images/icon-16px.png"
},
"default_locale": "en",
"options_ui": {
"page": "options/mzta-options.html"
},
"commands": {
"_thunderai__do_action": {
"suggested_key": {
"default": "Ctrl+Alt+A"
},
"description": "Opens the ThunderAI prompts menu"
}
},
"content_scripts": [
{
"matches": ["https://*.chatgpt.com/*"],
"js": ["js/lib/diff.js"],
"all_frames": true,
"run_at": "document_start"
}
]
}