-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (27 loc) · 984 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
{
"name": "HTTP Header Analysis",
"version": "1.0",
"description": "HTTP Header Analysis",
"permissions": ["activeTab", "browsingData", "pageCapture", "sessions", "storage", "webNavigation", "webRequest"],
"host_permissions": ["*://*/*"],
"manifest_version": 3,
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_icon": "images/investigation_32.png"
},
"icons": { "128": "images/investigation_128.png"},
"content_scripts": [{
"js": ["js/contentScript.js"],
"css": ["css/main.css", "css/util.css", "css/bootstrap.min.css", "css/bootstrap.min.css.map"],
"matches": ["*://*/*"]
}],
"web_accessible_resources": [{
"resources": ["*.css", "*.png", "*.ttf", "*.js"],
"matches": ["*://*/*"]
}],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
}
}