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
官方網址 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"
            }
        }
    }
}