-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 879 Bytes
/
manifest.json
File metadata and controls
45 lines (45 loc) · 879 Bytes
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
{
"manifest_version": 3,
"name": "Color Contrast Analyzer",
"version": "2.0.50",
"description": "Analyzes color contrast of web pages",
"permissions": [
"activeTab",
"scripting",
"tabs",
"tabCapture",
"desktopCapture",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"css": ["content.css"]
}
],
"web_accessible_resources": [
{
"resources": [
"capture.html",
"capture.js",
"content.js",
"content.css",
"options.html",
"options.js"
],
"matches": ["<all_urls>"],
"extension_ids": ["*"]
}
]
}