Modern Password Manager

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

Co to jest Modern Password Manager?

Modern Password Manager to rozszerzenie Chrome opracowane przez bradevelop, a jego główną funkcją jest „Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Modern Password Manager

Pobierz pliki rozszerzeń Modern Password Manager w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
Oficjalny URL https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
Opis Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
Rozmiar pliku 543 KB
Liczba instalacji 55
Aktualna Wersja 0.5.1
Ostatnia Aktualizacja 2021-03-31
Data Publikacji 2020-12-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper bradevelop
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/BenjaminHae/modern-password-manager
Adres URL Strony Pomocy https://github.com/BenjaminHae/modern-password-manager/issues
Adres URL Strony Polityki Prywatności https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
Obsługiwane Języki 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'"
}