Skip to content

Commit f4c61c8

Browse files
committed
Fix icon links in manifest, add explanations in Readme; released as 2.2.0
1 parent 0f0372f commit f4c61c8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

Diff for: README.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ Not yet supported: _[PwdHash by Cambridge](https://www.cl.cam.ac.uk/~dl551/pwdha
55

66
This version of PwdHash is both a web extension for common browsers (like [Firefox](https://addons.mozilla.org/de/firefox/addon/pwdhash-sidebar/), Chrome and soon Edge) as well a [simple web page](https://quassy.github.io/pwdhash/). You can install it as an add-on or just save the whole page locally.
77

8+
## Usage
9+
10+
**Web**: You can just use the web version, alternatively press `Ctrl`+`S`, save the whole page locally and use it offline. Enter an address and a password. After pressing return on the password field, the hash should be copied to your clipboard.
11+
12+
**Firefox**: Make sure the button ![](icon_16.png) is added to your toolbar, click it or press `F8` to open the toolbar menu. The address is prefilled (but can be modified). After pressing return on the password field, the hash is copied to your clipboard. Alternatively you can press `Ctrl`+`F8` to open the sidebar.
13+
14+
**Chrome** (unpublished): Click on the button ![](icon_16.png) or press `Alt`+`P` to open the toolbar menu. The address is prefilled (but can be modified). After pressing return on the password field, the hash is copied to your clipboard.
15+
16+
**Edge** (unpublished): Click on the button ![](icon_16.png) to open the toolbar menu. The address is prefilled (but can be modified). After pressing return on the password field, the hash is copied to your clipboard.
17+
818
## Screenshots
919

1020
![Enter your password to generate a hash for the respective page by opening the sidebar by pressing Ctrl+F8](_screenshots/firefox-sidebar.png)

Diff for: _releases/pwdhash-2.2.0.zip

14.7 KB
Binary file not shown.

Diff for: manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "PwdHash Sidebar",
44
"description": "Generate per-site passwords in a box",
55
"icons": {
6-
"16": "favicon.png",
6+
"16": "icon_16.png",
77
"32": "icon_32.png",
88
"64": "icon_64.png"
99
},
@@ -13,13 +13,13 @@
1313
"permissions": ["tabs", "activeTab"],
1414

1515
"browser_action": {
16-
"default_icon": "favicon.png",
16+
"default_icon": "favicon.ico",
1717
"default_title" : "PwdHash Popup",
1818
"browser_style": true,
1919
"default_popup": "index.html"
2020
},
2121
"sidebar_action": {
22-
"default_icon": "favicon.png",
22+
"default_icon": "favicon.ico",
2323
"default_title" : "PwdHash Sidebar",
2424
"default_panel": "index.html"
2525
},

0 commit comments

Comments
 (0)