Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Hvad er Password Generator (With DinoPass)?
Password Generator (With DinoPass) er en Chrome-udvidelse udviklet af Dominic Kirby, og dens hovedfunktion er "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".
Download Password Generator (With DinoPass)-udvidelses-CRX-fil
Download Password Generator (With DinoPass)-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Officiel URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Beskrivelse | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Filstørrelse | 34.83 KB |
Antal Installationer | 482 |
Nuværende Version | 1.5.1 |
Senest Opdateret | 2017-05-29 |
Udgivelsesdato | 2017-05-29 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | Dominic Kirby |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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:\/\/*\/*" ] } ] } |