Password Show Hide

This extension will allow to see store password on password field by adding a eye icon with input field

Password Show Hideคืออะไร?

Password Show Hide เป็นส่วนขยายของ Chrome ที่พัฒนาโดย GreeLogix และคุณลักษณะหลักของมันคือ "This extension will allow to see store password on password field by adding a eye icon with input field"

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

screenshot

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

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

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

                        Sometimes, we need to get/copy the saved password from password saved field data. This extension enable you to turn password field to text field. 
It will add a show link with each password field and on clicking the link it will turn the password visibility to text.                    

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

ชื่อ Password Show Hide Password Show Hide
ID dkdkinddlfncaenemeelaklfcpggabfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd
คำอธิบาย This extension will allow to see store password on password field by adding a eye icon with input field
ขนาดไฟล์ 90.27 KB
จำนวนการติดตั้ง 313
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2023-01-03
วันที่เผยแพร่ 2020-10-20
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา GreeLogix
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://greelogix.com?page_id=6688
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Show Hide",
    "description": "This extension will allow to see store password on password field by adding a eye icon with input field",
    "version": "1.3.1",
    "homepage_url": "https:\/\/github.com\/abuzer",
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html",
        "default_title": "Passowrd Show\/Hide"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "css": [
                "css\/style.css"
            ],
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/content.js"
            ],
            "web_accessible_resources": [
                "jquery.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}