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
Eメール [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"
    }
}