/usr/share/webext/browserpass/manifest.json is in webext-browserpass 2.0.11+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | {
"manifest_version": 2,
"name": "browserpass-ce",
"description": "Browser extension for zx2c4's pass (password manager) - Community Edition.",
"version": "2.0.11",
"author": "Danny van Kooten",
"homepage_url": "https://github.com/dannyvankooten/browserpass",
"options_ui": {
"page": "options.html",
"chrome_style": true,
"open_in_tab": false
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"browser_style": false,
"default_icon": "icon-lock.png",
"default_popup": "content.html"
},
"permissions": [
"clipboardWrite",
"tabs",
"activeTab",
"nativeMessaging",
"storage",
"http://*/*",
"https://*/*"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+L"
}
}
},
"applications": {
"gecko": {
"id": "browserpass@maximbaz.com",
"strict_min_version": "50.0"
}
},
"web_accessible_resources": [
"otp.html"
]
}
|