Show Hide Passwords

A browser action to reveal your saved passwords.

Show Hide Passwordsคืออะไร?

Show Hide Passwords เป็นส่วนขยายของ Chrome ที่พัฒนาโดย akilawickramasekara และคุณลักษณะหลักของมันคือ "A browser action to reveal your saved passwords."

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

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

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

                        This App will allow you to show saved passwords in the browser..                    

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

ชื่อ Show Hide Passwords Show Hide Passwords
ID dakfaecjbjjojelpglfahpbibcgagbnj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj
คำอธิบาย A browser action to reveal your saved passwords.
ขนาดไฟล์ 53.56 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2018-01-27
วันที่เผยแพร่ 2018-01-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา akilawickramasekara
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Hide Passwords",
    "version": "1.1",
    "description": "A browser action to reveal your saved passwords.",
    "browser_action": {
        "default_title": "Show My Passwords",
        "default_icon": "padlock-4-16.png"
    },
    "icons": {
        "16": "padlock-4-16.png",
        "48": "padlock-4-48.png",
        "128": "padlock-4-256.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "jquery-3.3.1.min.js",
        "script.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}