Password Generator (With DinoPass)

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

Cos'è Password Generator (With DinoPass)?

Password Generator (With DinoPass) è un'estensione di Chrome sviluppata da Dominic Kirby, e la sua funzione principale è "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".

Scarica il file CRX dell'estensione Password Generator (With DinoPass)

Scarica i file di estensione Password Generator (With DinoPass) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Password Generator (With DinoPass) Password Generator (With DinoPass)
ID bchnjebifjbfmnnkiagdfjeohfjpfhfk
URL Ufficiale https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk
Descrizione This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Dimensione del File 34.83 KB
Conteggio Installazioni 482
Versione Corrente 1.5.1
Ultimo Aggiornamento 2017-05-29
Data di Pubblicazione 2017-05-29
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Dominic Kirby
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}