Password Viewer

This extension will toggle password inputs to text

ما هو Password Viewer؟

Password Viewer هو إضافة Chrome تم تطويرها بواسطة jamesthornlea92، والميزة الرئيسية لها هي "This extension will toggle password inputs to text".

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

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

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

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

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

الاسم Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
الوصف This extension will toggle password inputs to text
حجم الملف 7.62 KB
عدد التثبيتات 947
النسخة الحالية 1.0
آخر تحديث 2016-07-19
تاريخ النشر 2016-07-19
تقييم 4.00/5 مجموع تقييمات 10
المطور jamesthornlea92
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}