-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
62 lines (54 loc) · 1.37 KB
/
manifest.json
File metadata and controls
62 lines (54 loc) · 1.37 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "Test Extension",
"icons": {
"48": "icon/icon.png",
"128": "icon/icon2.png"
},
"description": "The All-In-One extension",
"version": "0.1",
"manifest_version": 3,
"background": {
"service_worker": "provider/service-worker.js"
},
"permissions": ["storage", "activeTab", "tabs", "scripting"],
"action": {
"default_popup": "popup/index.html"
},
"options_page": "options/index.html",
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+F"
},
"description": "Opens Test extension"
}
},
"web_accessible_resources": [
{
"resources": [
"provider/versions.json"
],
"matches": [
"https://www.youtube.com/*",
"https://monkeytype.com/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*",
"https://monkeytype.com/*"
],
"css": [
],
"js": [
"provider/provider.js",
"script/JS/youtube.js",
"script/JS/monkeytype.js",
"script/JS/main.js"
]
}
]
}