-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 828 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 828 Bytes
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
{
"manifest_version": 3,
"name": "tech-int-cheat",
"description": "Revamp your virtual meetings with an AI-powered response generator that leverages ChatGPT and temporary discussion records.",
"version": "1.0.4",
"permissions": ["activeTab"],
"host_permissions": ["https://tech-int-cheat-backend.herokuapp.com/infer_response"],
"action": {
"default_popup": "popup/popup.html",
"default_icon": "images/extension-128.png"
},
"icons": {
"32": "images/extension-32.png",
"48": "images/extension-48.png",
"128": "images/extension-128.png"
},
"content_scripts": [
{
"js": ["scripts/close_caption_extraction.js"],
"matches": [
"https://meet.google.com/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html"
}