Modern Password Manager

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

Cos'è Modern Password Manager?

Modern Password Manager è un'estensione di Chrome sviluppata da bradevelop, e la sua funzione principale è "Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Modern Password Manager

Scarica i file di estensione Modern Password Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
URL Ufficiale https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
Descrizione Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
Dimensione del File 543 KB
Conteggio Installazioni 55
Versione Corrente 0.5.1
Ultimo Aggiornamento 2021-03-31
Data di Pubblicazione 2020-12-28
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore bradevelop
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/BenjaminHae/modern-password-manager
URL della Pagina di Aiuto https://github.com/BenjaminHae/modern-password-manager/issues
URL della Pagina della Politica sulla Privacy https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
Lingue Supportate 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'"
}