Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
What is Password Generator (With DinoPass)?
Password Generator (With DinoPass) is a Chrome extension developed by Dominic Kirby, and its main feature is "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".
Download Password Generator (With DinoPass) Extension CRX File
Download Password Generator (With DinoPass) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. Check out the code: https://github.com/domkirby/Chrome-Password-Generator UPDATE 1.5.1: We set a max length limit on the random password to help prevent crashing. NOTE: We do not save or store these values. DinoPass password are generated and immediately forgotten. The random passwords are generated by your browser.
Extension Basic Information
Name | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Official URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Description | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
File Size | 34.83 KB |
Installation Count | 482 |
Current Version | 1.5.1 |
Last Updated | 2017-05-29 |
Publish Date | 2017-05-29 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Dominic Kirby |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Password Generator (With DinoPass)", "description": "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.", "version": "1.5.1", "browser_action": { "default_icon": "icon.png", "default_popup": "dpass.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "js": [ "jquery.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |