mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-08 09:32:07 +01:00
94 lines
1.9 KiB
JSON
94 lines
1.9 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "__MSG_extName__",
|
|
"short_name": "__MSG_appName__",
|
|
"version": "1.14.3",
|
|
"description": "__MSG_extDesc__",
|
|
"default_locale": "en",
|
|
"author": "8bit Solutions LLC",
|
|
"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,
|
|
"js": [
|
|
"content/autofill.js"
|
|
],
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"file:///*"
|
|
],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"all_frames": true,
|
|
"js": [
|
|
"content/autofiller.js"
|
|
],
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"file:///*"
|
|
],
|
|
"run_at": "document_start"
|
|
},
|
|
{
|
|
"all_frames": false,
|
|
"js": [
|
|
"content/notificationBar.js"
|
|
],
|
|
"matches": [
|
|
"http://*/*",
|
|
"https://*/*",
|
|
"file:///*"
|
|
],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"background": {
|
|
"page": "background.html",
|
|
"persistent": true
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"19": "images/icon19.png",
|
|
"38": "images/icon38.png"
|
|
},
|
|
"default_title": "bitwarden",
|
|
"default_popup": "popup/index.html"
|
|
},
|
|
"permissions": [
|
|
"tabs",
|
|
"contextMenus",
|
|
"storage",
|
|
"unlimitedStorage",
|
|
"clipboardWrite",
|
|
"idle",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"commands": {
|
|
"generate_password": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+O"
|
|
},
|
|
"description": "Generate and copy a new random password to the clipboard."
|
|
},
|
|
"_execute_browser_action": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+Y"
|
|
}
|
|
}
|
|
},
|
|
"web_accessible_resources": [
|
|
"overlay/popup.html",
|
|
"notification/bar.html"
|
|
]
|
|
} |