Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Was ist Password Generator (With DinoPass)?
Password Generator (With DinoPass) ist eine Chrome-Erweiterung, die von Dominic Kirby entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".
Password Generator (With DinoPass)-Erweiterungs-CRX-Datei herunterladen
Laden Sie Password Generator (With DinoPass)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Offizielle URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Beschreibung | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Dateigröße | 34.83 KB |
Installationsanzahl | 482 |
Aktuelle Version | 1.5.1 |
Letztes Update | 2017-05-29 |
Veröffentlichungsdatum | 2017-05-29 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Dominic Kirby |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/*" ] } ] } |