Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Co to jest Password Generator (With DinoPass)?
Password Generator (With DinoPass) to rozszerzenie Chrome opracowane przez Dominic Kirby, a jego główną funkcją jest „This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.”.
Pobierz plik CRX rozszerzenia Password Generator (With DinoPass)
Pobierz pliki rozszerzeń Password Generator (With DinoPass) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Oficjalny URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Opis | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Rozmiar pliku | 34.83 KB |
Liczba instalacji | 482 |
Aktualna Wersja | 1.5.1 |
Ostatnia Aktualizacja | 2017-05-29 |
Data Publikacji | 2017-05-29 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Dominic Kirby |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } ] } |