Password Leak Checker

Check passwords for leaks

ما هو Password Leak Checker؟

Password Leak Checker هو إضافة Chrome تم تطويرها بواسطة Password Leak Checker، والميزة الرئيسية لها هي "Check passwords for leaks".

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

screenshot

تحميل ملف CRX للإضافة Password Leak Checker

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

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

                        More then 11 billion account have leaked in past 5 years!
This extension helps to keep your password strong and notifies you as soon as your password appears in any leaked database.
It completely secure, since we do not store or transfer your password online - only a part of a secure hash, so nobody can even image what your real password is.
Install and be safe!                    

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

الاسم Password Leak Checker Password Leak Checker
ID ljfpcmdeanmaoegildipnfnmdifglmbc
عنوان URL الرسمي https://chromewebstore.google.com/detail/password-leak-checker/ljfpcmdeanmaoegildipnfnmdifglmbc
الوصف Check passwords for leaks
حجم الملف 779 KB
عدد التثبيتات 195
النسخة الحالية 0.3.1
آخر تحديث 2021-08-15
تاريخ النشر 2021-07-24
المطور Password Leak Checker
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://pwdchecker.com/privacy.html
اللغات المدعومة en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "default_locale": "en",
    "version": "0.3.1",
    "browser_action": {
        "default_popup": "background.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "gcm",
        "cookies",
        "tabs"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "*"
    ]
}