Password Generator (With DinoPass)

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

Vad är Password Generator (With DinoPass)?

Password Generator (With DinoPass) är en Chrome-tillägg utvecklad av Dominic Kirby, och dess huvudfunktion är "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".

Ladda ner Password Generator (With DinoPass)-förlängningens CRX-fil

Ladda ner Password Generator (With DinoPass)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Password Generator (With DinoPass) Password Generator (With DinoPass)
ID bchnjebifjbfmnnkiagdfjeohfjpfhfk
Officiell webbadress https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk
Beskrivning This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Filstorlek 34.83 KB
Antal Installationer 482
Aktuell Version 1.5.1
Senast Uppdaterad 2017-05-29
Publiceringsdatum 2017-05-29
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Dominic Kirby
E-post [email protected]
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
            ]
        }
    ]
}