keepassxc-browser/README.md

41 lines
3.4 KiB
Markdown
Raw Normal View History

2017-06-14 13:40:00 +00:00
# keepassxc-browser
Browser extension for [KeePassXC](https://keepassxc.org/) with Native Messaging.
2017-03-27 06:09:05 +00:00
This is a heavily forked version of [pfn](https://github.com/pfn)'s [chromeIPass](https://github.com/pfn/passifox).
Some changes merged also from [smorks'](https://github.com/smorks/keepasshttp-connector) KeePassHttp-Connector fork.
2017-03-27 06:09:05 +00:00
2018-02-19 07:10:22 +00:00
Get the extension for [Firefox](https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/) or [Chrome/Chromium](hhttps://chrome.google.com/webstore/detail/keepassxc-browser/oboonakemofpalcgghocfoadofidjkkk).
2017-05-22 08:01:15 +00:00
2018-02-19 07:10:22 +00:00
Please see this [document](https://keepassxc.org/docs/keepassxc-browser-migration/) for instructions how to configure this KeePassXC fork in order to connect the database correctly.
## How it works
There are two methods which you can use keepassxc-browser to connect to KeePassXC:
2017-12-17 07:23:58 +00:00
1. keepassxc-browser communicated with KeePassXC through keepassxc-proxy. The proxy handles listening stdin/stdout
2017-11-05 12:07:30 +00:00
and transfers these messages through Unix domain sockets / named pipes to KeePassXC. This means KeePassXC can be used and started normally without inteference from
2017-12-17 09:25:42 +00:00
Native Messaging API. keepassxc-browser starts only the proxy application and there's no risk of shutting down KeePassXC or losing any unsaved changes. You don't need to install keepassxc-proxy separately. It is included in the latest KeePassXC fork. Alternatively you can use
2017-12-13 10:51:20 +00:00
[keepassxc-proxy-rust](https://github.com/varjolintu/keepassxc-proxy-rust) as a proxy if you prefer a non-Qt solution. There's also Python and C++ versions available at
2017-12-03 09:27:28 +00:00
[keepassxc-proxy](https://github.com/varjolintu/keepassxc-proxy).
2017-12-17 07:23:58 +00:00
2. keepassxc-browser communicates directly with KeePassXC via stdin/stdout. Using native messaging directly is a more secure as it ensures the traffic between KeePassXC and keepassxc-browser is direct. This method launches KeePassXC every time you start the browser and closes when you exit.
This can cause unsaved changes not to be saved. If you use this method it's important to enable `Automatically save after every change` from KeePassXC's preferences. Because this option is not preferred as default it's good to test this feature with your OS and ensure KeePassXC asks to confirm any unsaved changes before exit.
2017-10-19 06:26:47 +00:00
## Improvements
The following improvements and features have been made after the fork. At this point some features are only available with the KeePassXC fork:
- Real-time detection of database status (locked/unlocked)
- Credentials on a page are cleared or received automatically again if database is locked or changed to another
- It is possible to lock the active database from the popup (using the red lock icon)
- Input forms are detected even if the login div has been hidden or is created after the page was loaded
2017-12-17 09:25:42 +00:00
- It is possible to use the active database from multiple browsers at the same time with keepassxc-proxy option
2017-10-19 06:26:47 +00:00
- Deprecated JavaScript functions are removed and everything is asynchronous
2018-02-13 13:13:09 +00:00
- Updated Bootstrap to version 3.3.7 and jQuery to version 3.3.1
2017-10-19 06:26:47 +00:00
- New buttons, icons and settings page graphics
- Redesigned password generator dialog
- Password generator supports diceware passphrases and extended ASCII characters
- Autocomplete works also when only password fields are visible
2017-12-17 07:23:58 +00:00
- Supports TOTP with custom KHP placeholders (`KPH: {TOPT}`)
2017-10-19 06:26:47 +00:00
2017-04-02 08:53:06 +00:00
## Protocol
2017-10-22 14:53:51 +00:00
The details about the messaging protocol used with the browser extension and KeePassXC can be found [here](keepassxc-protocol.md).