2017-06-05 20:26:17 +02:00
|
|
|
{
|
2016-08-31 05:47:38 +02:00
|
|
|
"manifest_version": 2,
|
2016-10-18 14:10:40 +02:00
|
|
|
"name": "__MSG_extName__",
|
|
|
|
"short_name": "__MSG_appName__",
|
2017-05-07 03:22:01 +02:00
|
|
|
"version": "1.12.3",
|
2016-10-18 14:10:40 +02:00
|
|
|
"description": "__MSG_extDesc__",
|
|
|
|
"default_locale": "en",
|
2016-11-26 05:53:46 +01:00
|
|
|
"author": "8bit Solutions LLC",
|
2016-08-31 05:47:38 +02:00
|
|
|
"homepage_url": "https://bitwarden.com",
|
|
|
|
"icons": {
|
|
|
|
"16": "images/icon16.png",
|
|
|
|
"32": "images/icon32.png",
|
|
|
|
"48": "images/icon48.png",
|
|
|
|
"96": "images/icon96.png",
|
|
|
|
"128": "images/icon128.png"
|
|
|
|
},
|
2016-09-14 06:16:43 +02:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
2016-11-26 04:01:46 +01:00
|
|
|
"all_frames": true,
|
2017-06-05 20:26:17 +02:00
|
|
|
"js": [
|
|
|
|
"content/autofill.js"
|
|
|
|
],
|
|
|
|
"matches": [
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
"file:///*"
|
|
|
|
],
|
2016-09-14 06:16:43 +02:00
|
|
|
"run_at": "document_start"
|
2016-12-30 00:35:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"all_frames": false,
|
2017-06-05 20:26:17 +02:00
|
|
|
"js": [
|
|
|
|
"content/notificationBar.js"
|
|
|
|
],
|
|
|
|
"matches": [
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
"file:///*"
|
|
|
|
],
|
2016-12-30 00:35:41 +01:00
|
|
|
"run_at": "document_start"
|
2016-09-14 06:16:43 +02:00
|
|
|
}
|
|
|
|
],
|
2016-08-31 05:47:38 +02:00
|
|
|
"background": {
|
2017-06-05 20:26:17 +02:00
|
|
|
"page": "background.html",
|
2016-09-22 07:59:04 +02:00
|
|
|
"persistent": true
|
2016-08-31 05:47:38 +02:00
|
|
|
},
|
|
|
|
"browser_action": {
|
|
|
|
"default_icon": {
|
|
|
|
"19": "images/icon19.png",
|
|
|
|
"38": "images/icon38.png"
|
|
|
|
},
|
2016-09-01 04:47:37 +02:00
|
|
|
"default_title": "bitwarden",
|
2016-09-03 06:03:13 +02:00
|
|
|
"default_popup": "popup/index.html"
|
2016-09-02 06:50:57 +02:00
|
|
|
},
|
|
|
|
"permissions": [
|
2016-09-03 06:03:13 +02:00
|
|
|
"tabs",
|
|
|
|
"contextMenus",
|
2016-09-02 06:50:57 +02:00
|
|
|
"storage",
|
2016-09-03 06:03:13 +02:00
|
|
|
"unlimitedStorage",
|
2017-01-21 05:20:09 +01:00
|
|
|
"clipboardWrite",
|
2016-09-03 06:03:13 +02:00
|
|
|
"http://*/*",
|
|
|
|
"https://*/*"
|
2016-09-22 05:41:53 +02:00
|
|
|
],
|
2016-10-08 22:37:50 +02:00
|
|
|
"commands": {
|
|
|
|
"generate_password": {
|
|
|
|
"suggested_key": {
|
2016-10-20 00:53:19 +02:00
|
|
|
"default": "Ctrl+Shift+O"
|
2016-10-08 22:37:50 +02:00
|
|
|
},
|
|
|
|
"description": "Generate and copy a new random password to the clipboard."
|
|
|
|
},
|
|
|
|
"_execute_browser_action": {
|
|
|
|
"suggested_key": {
|
2016-10-20 00:53:19 +02:00
|
|
|
"default": "Ctrl+Shift+Y"
|
2016-10-08 22:37:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2016-09-22 05:41:53 +02:00
|
|
|
"web_accessible_resources": [
|
2016-12-30 00:35:41 +01:00
|
|
|
"overlay/popup.html",
|
|
|
|
"notification/bar.html"
|
2016-09-02 06:50:57 +02:00
|
|
|
]
|
2016-08-31 05:47:38 +02:00
|
|
|
}
|