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-11-21 20:02:26 +01:00
|
|
|
"version": "1.21.4",
|
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
|
|
|
},
|
2017-08-28 19:00:46 +02:00
|
|
|
{
|
|
|
|
"all_frames": true,
|
|
|
|
"js": [
|
|
|
|
"content/autofiller.js"
|
|
|
|
],
|
|
|
|
"matches": [
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
"file:///*"
|
|
|
|
],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
2016-12-30 00:35:41 +01:00
|
|
|
{
|
2017-10-06 05:27:32 +02:00
|
|
|
"all_frames": true,
|
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"
|
2017-11-02 21:46:40 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"all_frames": true,
|
|
|
|
"css": [
|
|
|
|
"content/autofill.css"
|
|
|
|
],
|
|
|
|
"matches": [
|
|
|
|
"http://*/*",
|
|
|
|
"https://*/*",
|
|
|
|
"file:///*"
|
|
|
|
],
|
|
|
|
"run_at": "document_end"
|
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",
|
2017-10-12 04:30:47 +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",
|
2017-06-05 20:27:24 +02:00
|
|
|
"idle",
|
2016-09-03 06:03:13 +02:00
|
|
|
"http://*/*",
|
2017-09-08 05:26:56 +02:00
|
|
|
"https://*/*",
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking"
|
2016-09-22 05:41:53 +02:00
|
|
|
],
|
2016-10-08 22:37:50 +02:00
|
|
|
"commands": {
|
2017-08-31 18:42:09 +02:00
|
|
|
"autofill_login": {
|
|
|
|
"suggested_key": {
|
|
|
|
"default": "Ctrl+Shift+L"
|
|
|
|
},
|
2017-08-31 21:35:23 +02:00
|
|
|
"description": "__MSG_commandAutofillDesc__"
|
2017-08-31 18:42:09 +02:00
|
|
|
},
|
2016-10-08 22:37:50 +02:00
|
|
|
"generate_password": {
|
|
|
|
"suggested_key": {
|
2017-09-01 15:13:02 +02:00
|
|
|
"default": "Ctrl+Shift+9"
|
2016-10-08 22:37:50 +02:00
|
|
|
},
|
2017-08-31 21:35:23 +02:00
|
|
|
"description": "__MSG_commandGeneratePasswordDesc__"
|
2016-10-08 22:37:50 +02:00
|
|
|
},
|
|
|
|
"_execute_browser_action": {
|
|
|
|
"suggested_key": {
|
2017-08-31 18:42:09 +02:00
|
|
|
"default": "Ctrl+Shift+Y",
|
|
|
|
"linux": "Ctrl+Shift+U"
|
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"
|
2017-11-15 22:40:24 +01:00
|
|
|
],
|
|
|
|
"-ms-preload": {
|
|
|
|
"backgroundScript": "edge/backgroundScriptsAPIBridge.js",
|
|
|
|
"contentScript": "edge/contentScriptsAPIBridge.js"
|
|
|
|
},
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{446900e4-71c2-419f-a6a7-df9c091e268b}",
|
|
|
|
"strict_min_version": "42.0"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"sidebar_action": {
|
|
|
|
"default_title": "bitwarden",
|
|
|
|
"default_panel": "popup/index.html?uilocation=sidebar",
|
|
|
|
"default_icon": "images/icon19.png"
|
|
|
|
}
|
2017-10-29 03:14:14 +01:00
|
|
|
}
|