-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest_chrome.json
More file actions
34 lines (34 loc) · 914 Bytes
/
Copy pathmanifest_chrome.json
File metadata and controls
34 lines (34 loc) · 914 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
{
"name": "ByeByeEXIF",
"description": "Remove metadata before uploading files!",
"version": "1.7",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "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",
"/utils/chunkManager.js"
],
"matches": ["<all_urls>"]
}],
"permissions":["tabs","contextMenus","offscreen"],
"host_permissions": ["<all_urls>"],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
}
}