Show Passwords

This extension transforms password fields into plain text fields.

Show Passwordsとは何ですか?

Show Passwordsはhttps://www.dahlkemedia.comによって開発されたChromeの拡張機能で、その主な機能は「This extension transforms password fields into plain text fields.」です。

拡張機能のスクリーンショット

screenshot

Show Passwords拡張機能のCRXファイルをダウンロード

Show Passwords拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

拡張機能の基本情報

名前 Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
公式URL https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
説明 This extension transforms password fields into plain text fields.
ファイルサイズ 6.14 KB
インストール数 185
現在のバージョン 1.1
最終更新日 2021-12-20
公開日 2016-08-31
評価 4.00/5 合計 2 レビュー
開発者 https://www.dahlkemedia.com
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}