Password Viewer

View saved password of web applications

ما هو Password Viewer؟

Password Viewer هو إضافة Chrome تم تطويرها بواسطة suprit shah، والميزة الرئيسية لها هي "View saved password of web applications".

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

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

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

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

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

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

الاسم Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
عنوان URL الرسمي https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
الوصف View saved password of web applications
حجم الملف 41.64 KB
عدد التثبيتات 593
النسخة الحالية 1.0
آخر تحديث 2019-09-27
تاريخ النشر 2019-09-25
المطور suprit shah
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}