-
Notifications
You must be signed in to change notification settings - Fork 684
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
118 lines (118 loc) · 3.57 KB
/
manifest-firefox.json
File metadata and controls
118 lines (118 loc) · 3.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "Proton Pass: Free Password Manager",
"description": "Free and fully encrypted password manager to keep your logins and passwords safe.",
"version": "1.35.0",
"manifest_version": 3,
"background": {
"scripts": ["background.js"]
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": ["orchestrator.js"],
"all_frames": true,
"run_at": "document_end"
},
{
"matches": [
"https://*.proton.me/*",
"https://*.proton.black/*",
"https://*.proton.pink/*",
"https://*.proton.dev/*",
"https://*.protontech.ch/*"
],
"js": ["external.js"],
"all_frames": false,
"run_at": "document_end"
},
{
"matches": ["https://*/*", "http://*/*"],
"exclude_matches": [
"https://pass.proton.me/*",
"https://pass.proton.dev/*",
"https://pass.proton.black/*",
"https://pass.proton.pink/*",
"https://pass.protontech.ch/*"
],
"js": ["webauthn.js"],
"all_frames": false,
"run_at": "document_start",
"world": "MAIN"
}
],
"permissions": [
"activeTab",
"alarms",
"scripting",
"storage",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"optional_permissions": ["privacy", "webRequestAuthProvider", "clipboardRead", "clipboardWrite", "nativeMessaging"],
"host_permissions": ["https://*/*", "http://*/*"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/assets/protonpass-icon-16.png",
"32": "/assets/protonpass-icon-32.png",
"48": "/assets/protonpass-icon-48.png",
"128": "/assets/protonpass-icon-128.png"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+X"
},
"description": "Open Proton Pass"
},
"open-larger-window": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Open Proton Pass in a larger window"
},
"autofill": {
"suggested_key": {
"default": "Ctrl+Shift+U"
},
"description": "Autofill login credentials"
}
},
"icons": {
"16": "/assets/protonpass-icon-16.png",
"32": "/assets/protonpass-icon-32.png",
"48": "/assets/protonpass-icon-48.png",
"128": "/assets/protonpass-icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"dropdown.html",
"notification.html",
"elements.js",
"assets/*.csv",
"assets/*.png",
"assets/*.svg",
"assets/*.woff",
"assets/*.woff2"
],
"matches": ["https://*/*", "http://*/*"]
},
{
"resources": ["*.wasm"],
"matches": ["<all_urls>"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "78272b6fa58f4a1abaac99321d503a20@proton.me",
"strict_min_version": "109.0"
}
}
}