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