-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1012 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
36
{
"name": "Meet Tracker",
"description": "Most advanced and easy to use attendance tracker for google meet.",
"version": "1.0.1",
"author": "Abhishek Tiwari",
"manifest_version": 3,
"icons": {
"16": "icons/mac-logo-16.png",
"32": "icons/mac-logo-32.png",
"48": "icons/mac-logo-48.png",
"128": "icons/mac-logo-128.png"
},
"permissions": ["storage"],
"content_scripts": [{
"matches": [
"https://meet.google.com/*"
],
"js": [
"attendance.js"
],
"run_at": "document_idle"
}],
"action": {
"default_icon": {
"16": "icons/mac-logo-16.png",
"32": "icons/mac-logo-32.png",
"48": "icons/mac-logo-48.png",
"128": "icons/mac-logo-128.png"
},
"default_popup": "popup.html",
"default_title": "Trackit | Meet Attendance Collector"
},
"background": {
"service_worker": "background.js"
}
}