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
官方網址 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"
    }
}