mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
144 lines
4.2 KiB
JSON
Executable file
144 lines
4.2 KiB
JSON
Executable file
{
|
|
"manifest_version": 2,
|
|
"name": "KeePassXC-Browser",
|
|
"version": "1.5.4",
|
|
"version_name": "1.5.4",
|
|
"description": "__MSG_extensionDescription__",
|
|
"author": "KeePassXC Team",
|
|
"icons": {
|
|
"16": "icons/keepassxc_16x16.png",
|
|
"48": "icons/keepassxc_48x48.png",
|
|
"64": "icons/keepassxc_64x64.png",
|
|
"96": "icons/keepassxc_96x96.png",
|
|
"128": "icons/keepassxc_128x128.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"16": "icons/keepassxc_16x16.png",
|
|
"18": "icons/keepassxc_18x18.png",
|
|
"19": "icons/keepassxc_19x19.png",
|
|
"32": "icons/keepassxc_32x32.png",
|
|
"36": "icons/keepassxc_36x36.png",
|
|
"38": "icons/keepassxc_38x38.png",
|
|
"64": "icons/keepassxc_64x64.png"
|
|
},
|
|
"default_title": "KeePassXC-Browser",
|
|
"default_popup": "popups/popup.html"
|
|
},
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"browser-polyfill.min.js",
|
|
"global.js",
|
|
"background/nacl.min.js",
|
|
"background/nacl-util.min.js",
|
|
"background/keepass.js",
|
|
"background/httpauth.js",
|
|
"background/browserAction.js",
|
|
"background/page.js",
|
|
"background/event.js",
|
|
"background/init.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"browser-polyfill.min.js",
|
|
"global.js",
|
|
"content/ui.js",
|
|
"content/banner.js",
|
|
"content/autocomplete.js",
|
|
"content/define.js",
|
|
"content/keepassxc-browser.js",
|
|
"content/pwgen.js",
|
|
"content/sites.js",
|
|
"content/totp-field.js",
|
|
"content/username-field.js"
|
|
],
|
|
"css": [
|
|
"css/autocomplete.css",
|
|
"css/banner.css",
|
|
"css/button.css",
|
|
"css/colors.css",
|
|
"css/define.css",
|
|
"css/notification.css",
|
|
"css/pwgen.css",
|
|
"css/totp.css",
|
|
"css/username.css"
|
|
],
|
|
"run_at": "document_idle",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"commands": {
|
|
"fill_username_password": {
|
|
"description": "__MSG_contextMenuFillUsernameAndPassword__",
|
|
"suggested_key": {
|
|
"default": "Alt+Shift+U",
|
|
"mac": "MacCtrl+Shift+U"
|
|
}
|
|
},
|
|
"fill_password": {
|
|
"description": "__MSG_contextMenuFillPassword__",
|
|
"suggested_key": {
|
|
"default": "Alt+Shift+I",
|
|
"mac": "MacCtrl+Shift+I"
|
|
}
|
|
},
|
|
"fill_totp": {
|
|
"description": "__MSG_contextMenuFillTOTP__",
|
|
"suggested_key": {
|
|
"default": "Alt+Shift+T",
|
|
"mac": "MacCtrl+Shift+T"
|
|
}
|
|
},
|
|
"show_password_generator": {
|
|
"description": "__MSG_contextMenuShowPasswordGenerator__",
|
|
"suggested_key": {
|
|
"default": "Alt+Shift+G",
|
|
"mac": "MacCtrl+Shift+G"
|
|
}
|
|
}
|
|
},
|
|
"web_accessible_resources": [
|
|
"icons/keepassxc.svg",
|
|
"icons/key.svg",
|
|
"icons/locked.svg",
|
|
"icons/otp.svg",
|
|
"css/autocomplete.css",
|
|
"css/banner.css",
|
|
"css/button.css",
|
|
"css/colors.css",
|
|
"css/pwgen.css",
|
|
"css/username.css",
|
|
"css/totp.css"
|
|
],
|
|
"permissions": [
|
|
"activeTab",
|
|
"contextMenus",
|
|
"clipboardWrite",
|
|
"nativeMessaging",
|
|
"notifications",
|
|
"storage",
|
|
"tabs",
|
|
"webNavigation",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"https://*/*",
|
|
"http://*/*",
|
|
"https://api.github.com/"
|
|
],
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "keepassxc-browser@keepassxc.org",
|
|
"strict_min_version": "67.0"
|
|
}
|
|
},
|
|
"default_locale": "en"
|
|
}
|