Chrome plugin to generate good passwords
Go to file
Neale Pickett 2173b6b40d Fill small screens 2017-05-26 02:24:41 +00:00
_locales/en Rename project, disambiguate charset 2017-05-25 18:38:12 -06:00
css Remove cruft 2017-03-12 21:55:39 -06:00
img Make icon stand out better against dark 2017-03-12 21:06:27 -06:00
js run standalone too 2017-05-26 02:10:21 +00:00
res Update README 2017-05-26 01:49:24 +00:00
LICENSE.md Mention other licenses 2017-03-12 22:02:10 -06:00
README.md Avoid hyperbole 2017-05-26 01:51:45 +00:00
manifest.json Rename project, disambiguate charset 2017-05-25 18:38:12 -06:00
popup.html Fill small screens 2017-05-26 02:24:41 +00:00

README.md

This is a simple, but cryptographically not awful, password generator.

Click on the extension icon, and it makes a password of length 12. You can dial the length up or down and tell it not to include certain character classes, and the password is updated automatically.

The extension makes sure any generated password is in your clipboard. So when you need a password, typically you can click the extension, then go back to the form and paste in your new password.

Screenshot

Hooray!

Cryptographically Not Awful

There are password generators that go to great lengths to use high-entropy seeds for their random number generators. This one uses window.crypto.getRandomValues, which is good enough for my purposes. You'll have to decide if it's good enough for yours. Feel free to read the code and decide for yourself.