-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
32 lines (31 loc) · 856 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
{
"manifest_version": 3,
"name": "SLIIT Eduscope Mods",
"version": "3.6.0",
"description": "A few simple mods for SLIIT's Eduscope Platform to make it a bit more user friendly",
"short_name": "Eduscope Mods",
"permissions": ["storage", "scripting", "tabs", "nativeMessaging"],
"host_permissions": ["*://lecturecapture.sliit.lk/*"],
"content_scripts": [
{
"matches": ["*://lecturecapture.sliit.lk/*"],
"css": ["background.css"],
"js": ["background.js"],
"run_at": "document_idle",
"all_frames": true
}
],
"background": {
"service_worker": "sw.js"
},
"action": {
"default_title": "Eduscope Mods",
"default_popup": "popup.html",
"default_icon": "icons/icon128.png"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}