2022-06-10 15:41:34 +02:00
|
|
|
{
|
|
|
|
"manifest_version": 3,
|
|
|
|
"minimum_chrome_version": "102.0",
|
|
|
|
"name": "__MSG_extName__",
|
|
|
|
"short_name": "__MSG_appName__",
|
2023-04-26 13:22:10 +02:00
|
|
|
"version": "2023.4.0",
|
2022-06-10 15:41:34 +02:00
|
|
|
"description": "__MSG_extDesc__",
|
|
|
|
"default_locale": "en",
|
|
|
|
"author": "Bitwarden Inc.",
|
|
|
|
"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",
|
|
|
|
"content/autofiller.js",
|
|
|
|
"content/notificationBar.js",
|
|
|
|
"content/contextMenuHandler.js"
|
|
|
|
],
|
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"all_frames": false,
|
|
|
|
"js": ["content/message_handler.js"],
|
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
|
|
|
"run_at": "document_start"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"all_frames": true,
|
|
|
|
"css": ["content/autofill.css"],
|
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
|
|
|
"run_at": "document_end"
|
2022-10-18 19:03:09 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"all_frames": true,
|
|
|
|
"js": ["content/misc-utils.js"],
|
|
|
|
"matches": ["http://*/*", "https://*/*", "file:///*"],
|
|
|
|
"run_at": "document_end"
|
2022-06-10 15:41:34 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"background": {
|
2022-08-10 03:30:26 +02:00
|
|
|
"service_worker": "background.js",
|
|
|
|
"type": "module"
|
2022-06-10 15:41:34 +02:00
|
|
|
},
|
|
|
|
"action": {
|
|
|
|
"default_icon": {
|
|
|
|
"19": "images/icon19.png",
|
|
|
|
"38": "images/icon38.png"
|
|
|
|
},
|
|
|
|
"default_title": "Bitwarden",
|
|
|
|
"default_popup": "popup/index.html"
|
|
|
|
},
|
|
|
|
"permissions": [
|
|
|
|
"tabs",
|
|
|
|
"contextMenus",
|
|
|
|
"storage",
|
|
|
|
"unlimitedStorage",
|
|
|
|
"clipboardRead",
|
|
|
|
"clipboardWrite",
|
2022-10-18 19:03:09 +02:00
|
|
|
"idle",
|
|
|
|
"alarms"
|
2022-06-10 15:41:34 +02:00
|
|
|
],
|
|
|
|
"optional_permissions": ["nativeMessaging"],
|
|
|
|
"host_permissions": ["http://*/*", "https://*/*"],
|
|
|
|
"content_security_policy": {
|
2023-01-26 15:20:12 +01:00
|
|
|
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
|
2022-06-10 15:41:34 +02:00
|
|
|
},
|
|
|
|
"commands": {
|
2022-08-12 14:45:50 +02:00
|
|
|
"_execute_action": {
|
2022-06-10 15:41:34 +02:00
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"description": "__MSG_commandAutofillDesc__"
|
|
|
|
},
|
|
|
|
"generate_password": {
|
|
|
|
"suggested_key": {
|
|
|
|
"default": "Ctrl+Shift+9"
|
|
|
|
},
|
|
|
|
"description": "__MSG_commandGeneratePasswordDesc__"
|
|
|
|
},
|
|
|
|
"lock_vault": {
|
|
|
|
"description": "__MSG_commandLockVaultDesc__"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"web_accessible_resources": [
|
|
|
|
{
|
2022-10-27 19:34:47 +02:00
|
|
|
"resources": ["notification/bar.html", "images/icon38.png", "images/icon38_locked.png"],
|
2022-06-10 15:41:34 +02:00
|
|
|
"matches": ["<all_urls>"]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"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"
|
2022-08-25 20:47:21 +02:00
|
|
|
},
|
|
|
|
"storage": {
|
|
|
|
"managed_schema": "managed_schema.json"
|
2022-06-10 15:41:34 +02:00
|
|
|
}
|
|
|
|
}
|