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

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

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