Password Viewer

This extension will toggle password inputs to text

Password Viewerとは何ですか?

Password Viewerはjamesthornlea92によって開発されたChromeの拡張機能で、その主な機能は「This extension will toggle password inputs to text」です。

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

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

拡張機能の使用方法

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

拡張機能の基本情報

名前 Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
公式URL https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
説明 This extension will toggle password inputs to text
ファイルサイズ 7.62 KB
インストール数 947
現在のバージョン 1.0
最終更新日 2016-07-19
公開日 2016-07-19
評価 4.00/5 合計 10 レビュー
開発者 jamesthornlea92
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}