Modern Password Manager

Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…

什麼是Modern Password Manager?

Modern Password Manager是由bradevelop開發的Chrome擴展程式,該擴展的主要功能是“Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…”。

擴展截圖

screenshot
screenshot

下載Modern Password Manager擴展crx文件

下載Modern Password Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.
Allows the user to use accounts from the self-hosted instance for logging in on webpages.

Offers access through popup (viewing/selecting accounts for origin of current tab) and context menu (inserting passwords and username).                    

擴展基本資訊

名稱 Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
官方網址 https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
簡介 Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
檔案大小 543 KB
安裝次數 55
目前版本 0.5.1
更新時間 2021-03-31
上架時間 2020-12-28
評分 5.00/5 共 1 次評分
開發者 bradevelop
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/BenjaminHae/modern-password-manager
說明頁面URL https://github.com/BenjaminHae/modern-password-manager/issues
隱私政策頁面URL https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Modern Password Manager",
    "version": "0.5.1",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*",
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup\/index.html",
        "default_icon": "assets\/iconLoggedOut.png",
        "default_title": "Modern Password Manager"
    },
    "content_scripts": [
        {
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "webaccessible\/*",
        "assets\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}