Reveal Passwords

Toggle password fields to text fields so you can see what you've typed (or mistyped).

ما هو Reveal Passwords؟

Reveal Passwords هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Toggle password fields to text fields so you can see what you've typed (or mistyped).".

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

screenshot

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

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

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

                        This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.                    

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

الاسم Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
عنوان URL الرسمي https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
الوصف Toggle password fields to text fields so you can see what you've typed (or mistyped).
حجم الملف 15.49 KB
عدد التثبيتات 311
النسخة الحالية 1.0.0
آخر تحديث 2016-06-12
تاريخ النشر 2016-06-11
تقييم 5.00/5 مجموع تقييمات 1
المطور Unknown
نوع الدفع free
موقع الإضافة https://github.com/ctrl-freaks/reveal-passwords
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Passwords",
    "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).",
    "version": "1.0.0",
    "short_name": "revealpasswords",
    "minimum_chrome_version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Reveal Passwords",
        "default_icon": {
            "19": "icons\/inactive-19.png",
            "38": "icons\/inactive-38.png",
            "64": "icons\/inactive-64.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "128": "icons\/inactive-128.png",
        "64": "icons\/inactive-64.png"
    }
}