Reveal Password

Reveals password on mouse hover

ما هو Reveal Password؟

Reveal Password هو إضافة Chrome تم تطويرها بواسطة sumeet، والميزة الرئيسية لها هي "Reveals password on mouse hover".

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

screenshot

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

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

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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

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

الاسم Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
عنوان URL الرسمي https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
الوصف Reveals password on mouse hover
حجم الملف 10.41 KB
عدد التثبيتات 1,000
النسخة الحالية 1.2
آخر تحديث 2017-09-04
تاريخ النشر 2017-09-04
تقييم 3.00/5 مجموع تقييمات 4
المطور sumeet
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}