Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmroanirgo/guten-pass
Guten Pass is an open source password generator using gutenberg texts as source material
https://github.com/cmroanirgo/guten-pass
chrome-extension firefox-addon password-generator webextension
Last synced: about 1 month ago
JSON representation
Guten Pass is an open source password generator using gutenberg texts as source material
- Host: GitHub
- URL: https://github.com/cmroanirgo/guten-pass
- Owner: cmroanirgo
- Created: 2020-01-13T03:40:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T03:06:56.000Z (about 5 years ago)
- Last Synced: 2024-11-12T12:23:12.060Z (3 months ago)
- Topics: chrome-extension, firefox-addon, password-generator, webextension
- Language: JavaScript
- Size: 4.91 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Guten-Pass: A Password Generator
This is a password generator that bases it's source dictionary of words from literary works available from [Project Gutenberg](https://wwww.gutenberg.org).
## Developer Installation & Build
Either download or clone this repo and `cd` to it.
```
npm install
```This will install around 50MB of webpack and related modules in order to develop.
### Usage
Building
```
npm run build
```Debug (non-minified) builds are available using:
```
npm run build:debug
```Watching
```
npm run watch
```Note: It is important that you run `npm run build` to generate a final minified version, rather than relying on the last watch output.
## Testing
### Chrome
1. Go to chrome://extensions/
2. Click `Load Unpacked Extension` and select the `build/chrome` folderNote: Chrome will keep this extension loaded after shutting down Chrome.
### Firefox
1. Go to about:debugging#addons
2. Click 'Load Temporary add-on' and select any file in the 'build/firefox' folderNote: Firefox will always unload this extension after shutting down Firefox.
## Credits
The main source for this project is based on the skeleton project available [here](https://github.com/cmroanirgo/webextension-template), by yours truly.
Thanks to the inspirational work by Bharani, and his [Email This](https://www.emailthis.me) boilerplate. Some of his code has been used (and credited) in the upstream skeleton project, but will be morphed and removed over time.