-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest_firefox.json
38 lines (38 loc) · 972 Bytes
/
manifest_firefox.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
{
"name": "ByeByeEXIF",
"description": "Remove metadata before uploading files!",
"version": "1.7",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"scripts": ["background.js"],
"type": "module"
},
"action": {
"default_title": "ByeByeEXIF"
},
"content_scripts": [{
"js": ["content-loader.js"],
"matches": ["<all_urls>"]
}],
"web_accessible_resources": [{
"resources": [
"content.js",
"/utils/base64.js",
"/utils/fileDict.js"
],
"matches": ["<all_urls>"]
}],
"permissions":["tabs","contextMenus"],
"host_permissions": ["<all_urls>"],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"browser_specific_settings": {
"gecko": {
"id": "ByeByeEXIF@ByeByeEXIF"
}
}
}