-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest.json
61 lines (61 loc) · 1.6 KB
/
manifest.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"manifest_version": 2,
"name": "ThunderAI",
"description": "__MSG_extensionDescription__",
"version": "2.3.4",
"author": "Mic ([email protected])",
"homepage_url": "https://micz.it/thunderbird-addon-thunderai/",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "115.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",
"https://*.chatgpt.com/*"
],
"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": {
"description": "Opens the ThunderAI prompts menu"
}
},
"content_scripts": [
{
"matches": ["https://*.chatgpt.com/*"],
"js": ["js/tb115_segmenter/tb115_loader.js"],
"all_frames": true,
"run_at": "document_start"
}
]
}