Password Viewer

View saved password of web applications

Password Viewerคืออะไร?

Password Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย suprit shah และคุณลักษณะหลักของมันคือ "View saved password of web applications"

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

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

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

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

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

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

ชื่อ Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
คำอธิบาย View saved password of web applications
ขนาดไฟล์ 41.64 KB
จำนวนการติดตั้ง 593
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-09-27
วันที่เผยแพร่ 2019-09-25
ผู้พัฒนา suprit shah
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}