Password Generator (With DinoPass)

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

Что такое Password Generator (With DinoPass)?

Password Generator (With DinoPass) - это расширение Chrome, разработанное Dominic Kirby, и его основная функция - "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".

Скачать файл CRX расширения Password Generator (With DinoPass)

Скачайте файлы расширений Password Generator (With DinoPass) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Password Generator (With DinoPass) Password Generator (With DinoPass)
ID bchnjebifjbfmnnkiagdfjeohfjpfhfk
Официальный URL https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk
Описание This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Размер файла 34.83 KB
Количество установок 482
Текущая Версия 1.5.1
Последнее Обновление 2017-05-29
Дата публикации 2017-05-29
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Dominic Kirby
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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:\/\/*\/*"
            ]
        }
    ]
}