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__",
|
2022-02-14 15:26:43 +01:00
|
|
|
"version": "1.56.5",
|
2016-10-18 14:10:40 +02:00
|
|
|
"description": "__MSG_extDesc__",
|
|
|
|
"default_locale": "en",
|
2020-02-19 04:35:28 +01:00
|
|
|
"author": "Bitwarden Inc.",
|
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": [
|
2018-01-17 19:38:32 +01:00
|
|
|
"content/autofill.js",
|
|
|
|
"content/autofiller.js",
|
2021-09-01 23:51:43 +02:00
|
|
|
"content/notificationBar.js",
|
|
|
|
"content/contextMenuHandler.js"
|
2017-08-28 19:00:46 +02:00
|
|
|
],
|
2022-02-11 05:16:30 +01:00
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
2017-08-28 19:00:46 +02:00
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
2016-12-30 00:35:41 +01:00
|
|
|
{
|
2018-01-17 19:38:32 +01:00
|
|
|
"all_frames": false,
|
2022-02-11 05:16:30 +01:00
|
|
|
"js": ["content/shortcuts.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
|
|
|
},
|
2020-08-11 22:25:07 +02:00
|
|
|
{
|
|
|
|
"all_frames": false,
|
2022-02-11 05:16:30 +01:00
|
|
|
"js": ["content/message_handler.js"],
|
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
2020-08-11 22:25:07 +02:00
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
2017-11-02 21:46:40 +01:00
|
|
|
{
|
|
|
|
"all_frames": true,
|
2022-02-11 05:16:30 +01:00
|
|
|
"css": ["content/autofill.css"],
|
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
2017-11-02 21:46:40 +01:00
|
|
|
"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"
|
|
|
|
},
|
2018-02-27 19:37:57 +01: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",
|
2019-03-07 02:28:49 +01:00
|
|
|
"clipboardRead",
|
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",
|
2021-01-25 21:23:18 +01:00
|
|
|
"webRequestBlocking"
|
|
|
|
],
|
2022-02-11 05:16:30 +01:00
|
|
|
"optional_permissions": ["nativeMessaging"],
|
2021-08-19 10:20:38 +02:00
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
2016-10-08 22:37:50 +02:00
|
|
|
"commands": {
|
2020-01-05 15:02:51 +01:00
|
|
|
"_execute_browser_action": {
|
|
|
|
"suggested_key": {
|
|
|
|
"default": "Ctrl+Shift+Y",
|
|
|
|
"linux": "Ctrl+Shift+U"
|
|
|
|
},
|
|
|
|
"description": "__MSG_commandOpenPopup__"
|
|
|
|
},
|
|
|
|
"_execute_sidebar_action": {
|
|
|
|
"suggested_key": {
|
|
|
|
"default": "Alt+Shift+Y",
|
|
|
|
"linux": "Alt+Shift+U"
|
|
|
|
},
|
|
|
|
"description": "__MSG_commandOpenSidebar__"
|
|
|
|
},
|
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__"
|
2020-11-06 16:43:06 +01:00
|
|
|
},
|
|
|
|
"lock_vault": {
|
|
|
|
"description": "__MSG_commandLockVaultDesc__"
|
2016-10-08 22:37:50 +02:00
|
|
|
}
|
|
|
|
},
|
2016-09-22 05:41:53 +02:00
|
|
|
"web_accessible_resources": [
|
2021-10-08 13:28:07 +02:00
|
|
|
"notification/bar.html",
|
|
|
|
"images/icon38.png",
|
|
|
|
"images/icon38_locked.png",
|
|
|
|
"images/close.png"
|
2017-11-15 22:40:24 +01:00
|
|
|
],
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{446900e4-71c2-419f-a6a7-df9c091e268b}",
|
|
|
|
"strict_min_version": "42.0"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"sidebar_action": {
|
2018-02-27 19:37:57 +01:00
|
|
|
"default_title": "Bitwarden",
|
2017-11-15 22:40:24 +01:00
|
|
|
"default_panel": "popup/index.html?uilocation=sidebar",
|
|
|
|
"default_icon": "images/icon19.png"
|
|
|
|
}
|
2021-12-08 15:03:39 +01:00
|
|
|
}
|