PasswordMaker

With a single password, generate a unique password for each site. Based on passwordmaker.org

什么是PasswordMaker?

PasswordMaker是由https://blog.brunomassa.com开发的Chrome扩展程序,该扩展的主要功能是“With a single password, generate a unique password for each site. Based on passwordmaker.org”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载PasswordMaker扩展crx文件

下载PasswordMaker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Instead remembering several passwords for each each you have an account, you *need only to remember one*.

This simple application generates a unique password combining your master password and the name of the site you are visiting. So even using the same password over and over, each site will get a different and unique.

So, even if a site is hacked and your password stolen, you protect your other sites from being invaded using your password.


# Features
* Automatically get the site address -URL- from the page you are current seeing
* Get different parts of the site address, like protocol and subpaths (www)
* Change the method of the generator: SHA, MD5, HMAC
* Create different profiles, so for sites that only allow numbers and letters can use one profile, while other you can use a complete set, including symbols
* Save the master password in the disk, in the RAM (reseted when you close browser) or never save it anywere                    

扩展基本信息

名称 PasswordMaker PasswordMaker
ID gnfjppomohbcojfccghjcgahfofgmgdn
官方URL https://chromewebstore.google.com/detail/passwordmaker/gnfjppomohbcojfccghjcgahfofgmgdn
简介 With a single password, generate a unique password for each site. Based on passwordmaker.org
文件大小 109 KB
安装次数 78
当前版本 2.3
更新时间 2013-07-05
上架时间 2013-07-04
评分 3.00/5 共2次评分
开发者 https://blog.brunomassa.com
付费类型 free
支持的语言 en-US
manifest.json
{
    "name": "PasswordMaker",
    "description": "With a single password, generate a unique password for each site. Based on passwordmaker.org",
    "version": "2.3",
    "manifest_version": 2,
    "options_page": "options.html",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs"
    ]
}