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
官方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"
    }
}