Modern Password Manager

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

Wat is Modern Password Manager?

Modern Password Manager is een Chrome-extensie ontwikkeld door bradevelop, en de belangrijkste functie is "Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Modern Password Manager

Download Modern Password Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
Officiële URL https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
Beschrijving Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
Bestandsgrootte 543 KB
Aantal Installaties 55
Huidige Versie 0.5.1
Laatst Bijgewerkt 2021-03-31
Publicatiedatum 2020-12-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar bradevelop
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/BenjaminHae/modern-password-manager
Help Pagina-URL https://github.com/BenjaminHae/modern-password-manager/issues
URL van de Privacybeleid Pagina https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
Ondersteunde Talen 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'"
}