mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
83 lines
1.8 KiB
JSON
83 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "chromeKeePassXC",
|
|
"version": "0.1.5",
|
|
"description": "KeePassXC integration for modern web browsers",
|
|
"author": "Sami Vänttinen",
|
|
"icons": {
|
|
"16": "icons/keepassxc_16x16.png",
|
|
"48": "icons/keepassxc_48x48.png",
|
|
"128": "icons/keepassxc_128x128.png"
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"19": "icons/keepassxc_19x19.png",
|
|
"38": "icons/keepassxc_38x38.png"
|
|
},
|
|
"default_title": "chromeKeePassXC",
|
|
"default_popup": "popups/popup.html"
|
|
},
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background/nacl.min.js",
|
|
"background/nacl-util.js",
|
|
"background/keepass.js",
|
|
"background/httpauth.js",
|
|
"background/browserAction.js",
|
|
"background/page.js",
|
|
"background/event.js",
|
|
"background/init.js"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [ "http://*/*", "https://*/*" ],
|
|
"js": [ "jquery-3.2.1.min.js", "jquery-ui.min.js", "chromekeepassxc.js" ],
|
|
"css": [ "jquery-ui.min.css", "chromekeepassxc.css" ],
|
|
"run_at": "document_idle",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"commands": {
|
|
"fill-username-password": {
|
|
"description": "Insert username + password",
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+U",
|
|
"mac": "Command+Shift+U"
|
|
}
|
|
},
|
|
"fill-password": {
|
|
"description": "Insert a password",
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+P",
|
|
"mac": "Command+Shift+P"
|
|
}
|
|
}
|
|
},
|
|
"web_accessible_resources": [
|
|
"icons/key_16x16.png",
|
|
"icons/key_24x24.png"
|
|
],
|
|
"permissions": [
|
|
"contextMenus",
|
|
"clipboardWrite",
|
|
"nativeMessaging",
|
|
"tabs",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"https://*/*",
|
|
"http://*/*",
|
|
"https://raw.github.com/"
|
|
],
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "chromeKeePassXC@sami.vanttinen",
|
|
"strict_min_version": "53.0"
|
|
}
|
|
}
|
|
}
|