Chrome Passwords

With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…

Chrome Passwords란 무엇입니까?

Chrome Passwords은(는) Christoph Roeder에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Chrome Passwords 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With Chrome Passwords you just have to remember one password!

Chrome Passwords does not store any sensitive information, such as other password managers, it generates unique passwords for each website with your master password.

For this, the open source algorithm of the well known Master Password App [1] is used.

Through this open algorithm, apps are already available for all kinds of operating systems. (Windows, MacOS, IOS, Android, ... )

[1] https://masterpasswordapp.com                    

확장 프로그램 기본 정보

이름 Chrome Passwords Chrome Passwords
ID injddhenpdfbccendcpjghdclnadepnp
공식 URL https://chrome.google.com/webstore/detail/chrome-passwords/injddhenpdfbccendcpjghdclnadepnp
설명 With Chrome Passwords you just have to remember one password! Chrome Passwords does not store any sensitive information, such as…
파일 크기 187 KB
설치 횟수 213
현재 버전 2.2
최근 업데이트 2021-01-08
출시 날짜 2016-02-05
평점 4.67/5 총 3 개의 평점
개발자 Christoph Roeder
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/brightdroid/chrome-passwords
지원되는 언어 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Passwords",
    "version": "2.2",
    "default_locale": "en",
    "minimum_chrome_version": "38",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/jquery.min.js",
            "scripts\/background.min.js",
            "scripts\/lib\/setImmediate-polyfill.js",
            "scripts\/lib\/pbkdf2.js",
            "scripts\/lib\/scrypt.js",
            "scripts\/lib\/mpw.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/content.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "scripts\/*.js.map"
    ],
    "options_page": "options.html",
    "page_action": {
        "default_title": "Chrome Passwords",
        "default_popup": "popup.html",
        "default_icon": "images\/icon38.png"
    },
    "content_security_policy": "script-src 'self' http:\/\/localhost:* 'unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+P",
                "windows": "Alt+P",
                "mac": "Alt+P"
            }
        }
    }
}