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
公式URL 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
Eメール [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'"
}