Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

Password Revealer with Keyboard Shortcutคืออะไร?

Password Revealer with Keyboard Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sleek Panther และคุณลักษณะหลักของมันคือ "View saved passwords with the click of a button"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Password Revealer with Keyboard Shortcut

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

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

                        Your browser remembers your password but you don't? Have no fear, it's easy to turn asterisks into text.

Click the Extension icon to reveal passwords

Alt+R Keyboard Shortcut                    

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

ชื่อ Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
คำอธิบาย View saved passwords with the click of a button
ขนาดไฟล์ 16.04 KB
จำนวนการติดตั้ง 433
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2023-10-30
วันที่เผยแพร่ 2020-04-09
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Sleek Panther
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
URL หน้าช่วยเหลือ https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Revealer with Keyboard Shortcut",
    "description": "View saved passwords with the click of a button",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_title": "Alt+R (Reveal Password)"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "revealPassword": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Reveal password in password fields"
        }
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}