Password De-Masker

This extension changes all password textboxes into normal textboxes... be safe folks ;-)

什么是Password De-Masker?

Password De-Masker是由Ross Dargan开发的Chrome扩展程序,该扩展的主要功能是“This extension changes all password textboxes into normal textboxes... be safe folks ;-)”。

下载Password De-Masker扩展crx文件

下载Password De-Masker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension converts all password textboxes into normal textboxes. It's based on an article Matt Baxter-Reynolds posted here: http://www.zdnet.com/we-need-to-stop-masking-passwords-7000020894/?utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer

Personally I think masking is a good idea, but here is a chance to see for yourself!

Please note Lastpass must be disabled otherwise you will still see hashed passwords.                    

扩展基本信息

名称 Password De-Masker Password De-Masker
ID npkhmjmjaoaipkjdflknplfpmhcfdlpb
官方URL https://chrome.google.com/webstore/detail/password-de-masker/npkhmjmjaoaipkjdflknplfpmhcfdlpb
简介 This extension changes all password textboxes into normal textboxes... be safe folks ;-)
文件大小 3.41 KB
安装次数 77
当前版本 1.0
更新时间 2013-09-19
上架时间 2013-09-19
评分 4.80/5 共5次评分
开发者 Ross Dargan
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password De-Masker",
    "description": "This extension changes all password textboxes into normal textboxes... be safe folks ;-)",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ]
}