bitwarden-estensione-browser/src/manifest.json

148 lines
3.2 KiB
JSON
Raw Normal View History

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__",
2021-10-27 17:14:35 +02:00
"version": "1.54.0",
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"
},
"content_scripts": [
{
"all_frames": true,
2017-06-05 20:26:17 +02:00
"js": [
"content/autofill.js",
"content/autofiller.js",
"content/notificationBar.js",
"content/contextMenuHandler.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"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/shortcuts.js"
2017-06-05 20:26:17 +02:00
],
"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": false,
"js": [
"content/message_handler.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"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-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",
"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",
"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"
],
"optional_permissions": [
2020-10-05 15:44:19 +02:00
"nativeMessaging"
2016-09-22 05:41:53 +02:00
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"commands": {
"_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__"
},
"autofill_login": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
2017-08-31 21:35:23 +02:00
"description": "__MSG_commandAutofillDesc__"
},
"generate_password": {
"suggested_key": {
2017-09-01 15:13:02 +02:00
"default": "Ctrl+Shift+9"
},
2017-08-31 21:35:23 +02:00
"description": "__MSG_commandGeneratePasswordDesc__"
},
"lock_vault": {
"description": "__MSG_commandLockVaultDesc__"
}
},
2016-09-22 05:41:53 +02:00
"web_accessible_resources": [
"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"
}
}