-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
46 lines (46 loc) · 1.05 KB
/
manifest.firefox.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"manifest_version": 3,
"name": "Cloudhood",
"version": "1.8.2",
"action": {
"default_popup": "popup.html",
"default_icon": {
"38": "img/main-icon-38.png"
},
"default_title": "Modify Outgoing XHR/Fetch Request Headers"
},
"icons": {
"16": "img/main-icon-16.jpg",
"32": "img/main-icon-32.jpg",
"38": "img/main-icon-38.png",
"48": "img/main-icon-48.jpg",
"128": "img/main-icon-128.jpg"
},
"permissions": [
"storage",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"background.bundle.js"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data: blob: moz-extension:; style-src 'self' 'nonce-cloudhood-extension-style-nonce'; connect-src 'self' data: blob: moz-extension:;"
},
"web_accessible_resources": [
{
"resources": [
"img/*"
],
"matches": [
"<all_urls>"
]
}
]
}