Modern Password Manager

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

What is Modern Password Manager?

Modern Password Manager is a Chrome extension developed by bradevelop, and its main feature is "Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…".

Extension Screenshots

screenshot
screenshot

Download Modern Password Manager Extension CRX File

Download Modern Password Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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).                    

Extension Basic Information

Name Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
Official URL https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
Description Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
File Size 543 KB
Installation Count 55
Current Version 0.5.1
Last Updated 2021-03-31
Publish Date 2020-12-28
Rating 5.00/5 Total 1 Ratings
Developer bradevelop
Email [email protected]
Payment Type free
Extension Website https://github.com/BenjaminHae/modern-password-manager
Help Page URL https://github.com/BenjaminHae/modern-password-manager/issues
Privacy Policy Page URL https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
Supported Languages 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'"
}