bitwarden-estensione-browser/src/manifest.json

101 lines
2.1 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__",
2017-08-31 21:41:16 +02:00
"version": "1.15.0",
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"
},
"content_scripts": [
{
"all_frames": true,
2017-06-05 20:26:17 +02:00
"js": [
"content/autofill.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start"
2016-12-30 00:35:41 +01:00
},
{
"all_frames": true,
"js": [
"content/autofiller.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/notificationBar.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
2016-12-30 00:35:41 +01:00
"run_at": "document_start"
}
],
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",
2017-06-05 20:27:24 +02:00
"idle",
2016-09-03 06:03:13 +02:00
"http://*/*",
"https://*/*"
2016-09-22 05:41:53 +02:00
],
"commands": {
"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 05:08:24 +02:00
"default": "Ctrl+Shift+1"
},
2017-08-31 21:35:23 +02:00
"description": "__MSG_commandGeneratePasswordDesc__"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"linux": "Ctrl+Shift+U"
}
}
},
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
}