-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (32 loc) · 872 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
{
"name": "Meet Scheduler",
"version": "0.1.2",
"description": "An extension to start meetings automatically",
"manifest_version": 3,
"icons": { "48": "icon48.png" },
"permissions": ["storage", "alarms", "tabs"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Schedule meets",
"default_popup": "popup/popup.html"
},
"options_page": "options_page/options_page.html",
"content_scripts": [
{
"matches": ["https://meet.google.com/*"],
"css": ["google-meet.css"],
"js": ["meet_script.js", "endCall-script.js"]
}
],
"web_accessible_resources": [
{
"resources": ["google-meet.html"],
"matches": ["https://meet.google.com/*", "https://www.google.com/*"]
}
],
"externally_connectable": {
"matches": ["*://localhost/*", "https://*.jeenius.gq/*"]
}
}