Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

什麼是Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut是由Sleek Panther開發的Chrome擴展程式,該擴展的主要功能是“View saved passwords with the click of a button”。

擴展截圖

screenshot
screenshot
screenshot

下載Password Revealer with Keyboard Shortcut擴展crx文件

下載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
官方網址 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"
    }
}