Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Co je Password Generator (With DinoPass)?
Password Generator (With DinoPass) je rozšíření Chrome vyvinuté Dominic Kirby, a jeho hlavní funkcí je „This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.“.
Stáhnout soubor CRX rozšíření Password Generator (With DinoPass)
Stáhněte si soubory rozšíření Password Generator (With DinoPass) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Oficiální URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Popis | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Velikost souboru | 34.83 KB |
Počet instalací | 482 |
Aktuální Verze | 1.5.1 |
Poslední Aktualizace | 2017-05-29 |
Datum Vydání | 2017-05-29 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | Dominic Kirby |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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:\/\/*\/*" ] } ] } |