-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
62 lines (62 loc) · 1.68 KB
/
manifest-firefox.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"manifest_version": 3,
"name": "Browserpass",
"description": "Browser extension for zx2c4's pass (password manager)",
"version": "3.11.0",
"author": "Maxim Baz <browserpass@maximbaz.com>, Steve Gilberd <steve@erayd.net>",
"homepage_url": "https://github.com/browserpass/browserpass-extension",
"background": {
"scripts": ["js/background.dist.js"]
},
"icons": {
"16": "icon16.png",
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon16.png",
"128": "icon.svg"
},
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"permissions": [
"activeTab",
"alarms",
"tabs",
"clipboardRead",
"clipboardWrite",
"nativeMessaging",
"notifications",
"scripting",
"storage",
"webRequest",
"webRequestAuthProvider"
],
"host_permissions": ["http://*/*", "https://*/*"],
"content_security_policy": {
"extension_pages": "default-src 'none'; font-src 'self'; img-src 'self' data:; script-src 'self'"
},
"browser_specific_settings": {
"gecko": {
"id": "browserpass@maximbaz.com",
"strict_min_version": "58.0"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L"
}
},
"fillBest": {
"suggested_key": {
"default": "Ctrl+Shift+F"
},
"description": "Fill form with the best matching credentials"
}
}
}