-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
42 lines (42 loc) · 1.04 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
{
"manifest_version": 3,
"name": "Voice Control for ChatMindAI",
"version": "1.0.1",
"description": "Expands ChatGPT with voice control and read aloud. Only supported for https://x.chatmindai.net/chat. Note: This extension is based on ChatGPT-voice-control (https://github.com/SheikhAminul/ChatGPT-voice-control). If there is any problem, please send email to [email protected].",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"js": [
"entry.js"
],
"matches": [
"https://x.chatmindai.net/*"
],
"run_at": "document_end",
"all_frames": false
}
],
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Voice Control for ChatMindAI",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"matches": [
"https://x.chatmindai.net/*"
],
"resources": [
"index.js"
]
}
]
}