-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (35 loc) · 943 Bytes
/
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
{
"manifest_version": 2,
"name": "Smart O'Class Attendee",
"version": "1.0.0",
"description": "Seamless interaction with instructors in online classes",
"icons":{
"128": "icon128.png",
"48": "icon48.png",
"16": "icon16.png"
},
"page_action":{
"default_icon": "icon16.png",
"default_popup": "popup.html",
"default_title": "Smart O'Class Attendee"
},
"background":{
"scripts": ["eventPage.js"],
"persistent": false
},
"content_scripts":[
{
"matches": ["https://meet.google.com/*"],
"js": ["jquery-3.6.0.min.js","content.js"],
"css": ["content.css"]
}
],
"permissions":[
"tabs",
"notifications",
"https://meet.google.com/*",
"storage","identity", "identity.email",
"http://192.168.137.67:8000/*",
"http://localhost:3000/*"
]
}