Modern Password Manager

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

ما هو Modern Password Manager؟

Modern Password Manager هو إضافة Chrome تم تطويرها بواسطة bradevelop، والميزة الرئيسية لها هي "Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Modern Password Manager

قم بتنزيل ملفات الامتداد Modern Password Manager بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Modern Password Manager Modern Password Manager
ID nicghopbfhgnjbbkdhkhaiekhpdjdfge
عنوان URL الرسمي https://chromewebstore.google.com/detail/modern-password-manager/nicghopbfhgnjbbkdhkhaiekhpdjdfge
الوصف Browser Extension for the self-hosted password manager that is available at https://github.com/BenjaminHae/modern-password-manager.…
حجم الملف 543 KB
عدد التثبيتات 55
النسخة الحالية 0.5.1
آخر تحديث 2021-03-31
تاريخ النشر 2020-12-28
تقييم 5.00/5 مجموع تقييمات 1
المطور bradevelop
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/BenjaminHae/modern-password-manager
عنوان صفحة المساعدة https://github.com/BenjaminHae/modern-password-manager/issues
عنوان صفحة سياسة الخصوصية https://github.com/BenjaminHae/PwChromeExtension/blob/master/dataprivacy.md
اللغات المدعومة 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'"
}