Reveal Password

Reveals password on mouse hover

Reveal Passwordคืออะไร?

Reveal Password เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sumeet และคุณลักษณะหลักของมันคือ "Reveals password on mouse hover"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reveal Password

ดาวน์โหลดไฟล์ส่วนขยาย Reveal Password ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
คำอธิบาย Reveals password on mouse hover
ขนาดไฟล์ 10.41 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-09-04
วันที่เผยแพร่ 2017-09-04
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา sumeet
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}