-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46d3641
commit bd4c97c
Showing
1 changed file
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,37 @@ | ||
Chrome Addon | ||
============ | ||
|
||
Version 0.1-beta | ||
|
||
This is a Chrome Extension for the password manager(https://github.com/zeruniverse/Password-Manager). | ||
It currently supports inserting username and password into inputs in pages for whose urls accounts exist. | ||
This addon doesn't write any changes to the password manager. | ||
|
||
Preparation | ||
----------- | ||
Installation | ||
------------ | ||
|
||
You need to replace https://%HOST%/ with the address of your own instance of the password manager. | ||
Make sure you have an instance of the password manager(version 9.09 and above) installed. | ||
Get the code of this addon. You need to replace https://%HOST%/ with the address of your own instance of the password manager. For example using this command: | ||
|
||
find ./ -type f -exec sed -i -e 's#%HOST%#www.yourhost.de#g' {}\; | ||
|
||
Now you load the extension in chrome as described here: https://developer.chrome.com/extensions/getstarted#unpacked | ||
|
||
Usage | ||
----- | ||
|
||
After installation you will find a new icon in your menu. | ||
When you log in to your password manager the addon automatically loads your accounts. | ||
When logged in clicking the icon shows a popup containing the available accounts for the current tab. Choosing an account makes it default until you visit another url. | ||
Right clicking on an input field on a webpage shows the context entry "Password-Manager" here you can choose to "Insert Username" or "Insert Password". This inserts the data of the currently active account into the selected input field. | ||
|
||
After 10 minutes of inactivity you automatically get logged out. | ||
|
||
Future Plans | ||
------------ | ||
|
||
* Firefox compatibility | ||
* Remembering which account is chosen as default for a webpage | ||
* Searching accounts | ||
* Removing the need to manipulate the source | ||
|