Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Wat is Password Generator (With DinoPass)?
Password Generator (With DinoPass) is een Chrome-extensie ontwikkeld door Dominic Kirby, en de belangrijkste functie is "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".
Download het CRX-bestand van de extensie Password Generator (With DinoPass)
Download Password Generator (With DinoPass)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Officiële URL | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Beschrijving | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Bestandsgrootte | 34.83 KB |
Aantal Installaties | 482 |
Huidige Versie | 1.5.1 |
Laatst Bijgewerkt | 2017-05-29 |
Publicatiedatum | 2017-05-29 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Dominic Kirby |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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:\/\/*\/*" ] } ] } |