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"
    ]
}