-
Notifications
You must be signed in to change notification settings - Fork 107
/
manifest.json
executable file
·44 lines (44 loc) · 1.21 KB
/
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
41
42
43
44
{
"name": "Web Vitals",
"version": "1.5.3",
"manifest_version": 3,
"description": "Measure metrics for a healthy site",
"homepage_url": "https://web.dev/articles/vitals",
"icons": {
"128": "icons/vitals128w.png",
"256": "icons/vitals256w.png",
"512": "icons/vitals512w.png"
},
"action": {
"default_icon": "icons/default256w.png",
"default_title": "Web Vitals",
"default_popup": "src/browser_action/popup.html"
},
"options_page": "src/options/options.html",
"host_permissions": ["*://*/*"],
"permissions": ["tabs", "storage", "activeTab", "scripting"],
"web_accessible_resources": [
{
"resources": [
"src/browser_action/viewer.css",
"src/browser_action/web-vitals.js",
"src/browser_action/on-each-interaction.js"
],
"matches": ["*://*/*"]
}
],
"content_scripts": [
{
"matches": ["*://*/*"],
"css": ["src/browser_action/viewer.css"],
"js": ["src/browser_action/lodash-debounce-custom.js"]
}
],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"content_security_policy": {
"extension_pages": "default-src 'self'; connect-src https://chromeuxreport.googleapis.com;"
}
}