Modern Password Manager

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

O que é Modern Password Manager?

Modern Password Manager é uma extensão do Chrome desenvolvida por bradevelop, e sua principal característica é "Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Modern Password Manager

Baixe arquivos de extensão Modern Password Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
URL Oficial https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
Descrição Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
Tamanho do Arquivo 543 KB
Contagem de Instalações 55
Versão Atual 0.5.1
Última Atualização 2021-03-31
Data de Publicação 2020-12-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor bradevelop
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/BenjaminHae/modern-password-manager
URL da Página de Ajuda https://github.com/BenjaminHae/modern-password-manager/issues
URL da Página de Política de Privacidade https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
Idiomas Suportados 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'"
}