Password Generator (With DinoPass)

This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.

Qu'est-ce que Password Generator (With DinoPass) ?

Password Generator (With DinoPass) est une extension Chrome développée par Dominic Kirby, et sa fonction principale est "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".

Télécharger le fichier CRX de l'extension Password Generator (With DinoPass)

Téléchargez les fichiers d'extension Password Generator (With DinoPass) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Password Generator (With DinoPass) Password Generator (With DinoPass)
ID bchnjebifjbfmnnkiagdfjeohfjpfhfk
URL Officiel https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk
Description This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Taille du Fichier 34.83 KB
Nombre d'Installations 482
Version Actuelle 1.5.1
Dernière Mise à Jour 2017-05-29
Date de Publication 2017-05-29
Évaluation 5.00/5 Total 3 Évaluations
Développeur Dominic Kirby
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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:\/\/*\/*"
            ]
        }
    ]
}