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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
        }
    ]
}