Modern Password Manager

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

Co je Modern Password Manager?

Modern Password Manager je rozšíření Chrome vyvinuté bradevelop, a jeho hlavní funkcí je „Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Modern Password Manager

Stáhněte si soubory rozšíření Modern Password Manager ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
Oficiální URL https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
Popis Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
Velikost souboru 543 KB
Počet instalací 55
Aktuální Verze 0.5.1
Poslední Aktualizace 2021-03-31
Datum Vydání 2020-12-28
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář bradevelop
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/BenjaminHae/modern-password-manager
URL Stránky Nápovědy https://github.com/BenjaminHae/modern-password-manager/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
Podporované Jazyky 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'"
}