Reveal Passwords

Toggle password fields to text fields so you can see what you've typed (or mistyped).

什麼是Reveal Passwords?

Reveal Passwords是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Toggle password fields to text fields so you can see what you've typed (or mistyped).”。

擴展截圖

screenshot

下載Reveal Passwords擴展crx文件

下載Reveal Passwords擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.                    

擴展基本資訊

名稱 Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
官方網址 https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
簡介 Toggle password fields to text fields so you can see what you've typed (or mistyped).
檔案大小 15.49 KB
安裝次數 311
目前版本 1.0.0
更新時間 2016-06-12
上架時間 2016-06-11
評分 5.00/5 共 1 次評分
開發者 Unknown
付費類型 free
擴展官網 https://github.com/ctrl-freaks/reveal-passwords
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Passwords",
    "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).",
    "version": "1.0.0",
    "short_name": "revealpasswords",
    "minimum_chrome_version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Reveal Passwords",
        "default_icon": {
            "19": "icons\/inactive-19.png",
            "38": "icons\/inactive-38.png",
            "64": "icons\/inactive-64.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "128": "icons\/inactive-128.png",
        "64": "icons\/inactive-64.png"
    }
}