-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·39 lines (39 loc) · 1.16 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
{
"manifest_version": 3,
"name": "Securefs Chrome",
"version": "1.0",
"permissions": [
"storage",
"activeTab",
"tabs",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"downloads",
"system.cpu",
"system.memory"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"host_permissions": [
"https://onedrive.live.com/*",
"https://www.dropbox.com/*"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [{
"resources": ["node_modules/argon2-browser/dist/argon2.wasm", "node_modules/argon2-browser/dist/argon2-simd.wasm"],
"matches": ["<all_urls>"]
}],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://onedrive.live.com/*", "https://www.dropbox.com/*"],
"js": ["lib/cryptojs/cryptojs-aes_0.2.0.min.js", "lib/cryptojs/cryptojs-mode-ctr_0.2.0.min.js", "lib/cryptojs/all_0.2.0.min.js", "lib/cryptojs/cryptojs-mode-ecb_0.2.0.min.js", "utils/code.js", "utils/other.js", "cfs/securefs.js", "content.js"]
}
],
"options_page": "options.html"
}