-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
40 lines (39 loc) · 938 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
37
38
39
40
{
"name": "LRS Enhancer",
"version": "1.0.0",
"manifest_version": 2,
"description": "Add keyboard shortcuts to McGill Lecture Recording System",
"content_scripts": [
{
"matches": ["https://lrs.mcgill.ca/*"],
"js": ["runner.js"],
"css": ["controlbox.css"],
"all_frames": true
}],
"web_accessible_resources": ["inject.js", "fonts/*"],
"browser_action":
{
"default_title": "Enhance LRS!",
"default_icon":
{
"16": "logo16.png",
"19": "logo19.png",
"32": "logo32.png",
"38": "logo38.png",
"48": "logo48.png",
"128": "logo128.png"
}
},
"icons":
{
"16": "logo16.png",
"32": "logo32.png",
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"https://*/*",
"http://*/*",
"tabs"
]
}