Password Monkey

Show your password by turning ●●●●●● into plain, readable text.

Password Monkeyとは何ですか?

Password Monkeyはmarxtylerによって開発されたChromeの拡張機能で、その主な機能は「Show your password by turning ●●●●●● into plain, readable text.」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Think you wrote your password incorrectly? Need to see an autofilled password? Check it with Password Monkey.                    

拡張機能の基本情報

名前 Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
公式URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
説明 Show your password by turning ●●●●●● into plain, readable text.
ファイルサイズ 268 KB
インストール数 521
現在のバージョン 1.0.0
最終更新日 2019-02-12
公開日 2019-02-06
評価 5.00/5 合計 1 レビュー
開発者 marxtyler
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Monkey",
    "version": "1.0.0",
    "description": "Show your password by turning \u25cf\u25cf\u25cf\u25cf\u25cf\u25cf into plain, readable text.",
    "icons": {
        "16": "monkey.png",
        "48": "monkey.png",
        "128": "monkey.png"
    },
    "browser_action": {
        "default_title": "Password Monkey",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "in-content.js",
                "monkey.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            },
            "description": "Opens Password Monkey"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'",
    "offline_enabled": true,
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "",
        "activeTab"
    ]
}