Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

ما هو Password visibility toggle؟

Password visibility toggle هو إضافة Chrome تم تطويرها بواسطة codeberg30، والميزة الرئيسية لها هي "Allows user to reveal their own passwords on input fields via context menu.".

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

screenshot
screenshot

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

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

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

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

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

الاسم Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
عنوان URL الرسمي https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
الوصف Allows user to reveal their own passwords on input fields via context menu.
حجم الملف 8.46 KB
عدد التثبيتات 505
النسخة الحالية 1.0
آخر تحديث 2016-10-20
تاريخ النشر 2016-10-20
المطور codeberg30
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/codeberg30/password-visibility-toggle-chrome-extension
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}