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)是由Dominic Kirby开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.”。

下载Password Generator (With DinoPass)扩展crx文件

下载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:\/\/*\/*"
            ]
        }
    ]
}