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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}