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ファイルをダウンロード

Chrome Passwords拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            }
        }
    }
}