Show Passwords

This extension transforms password fields into plain text fields.

什么是Show Passwords?

Show Passwords是由https://www.dahlkemedia.com开发的Chrome扩展程序,该扩展的主要功能是“This extension transforms password fields into plain text fields.”。

扩展截图

screenshot

下载Show Passwords扩展crx文件

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

扩展使用说明

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

扩展基本信息

名称 Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
官方URL https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
简介 This extension transforms password fields into plain text fields.
文件大小 6.14 KB
安装次数 185
当前版本 1.1
更新时间 2021-12-20
上架时间 2016-08-31
评分 4.00/5 共2次评分
开发者 https://www.dahlkemedia.com
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}