Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

什么是Password visibility toggle?

Password visibility toggle是由codeberg30开发的Chrome扩展程序,该扩展的主要功能是“Allows user to reveal their own passwords on input fields via context menu.”。

扩展截图

screenshot
screenshot

下载Password visibility toggle扩展crx文件

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

扩展使用说明

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

扩展基本信息

名称 Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
官方URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
简介 Allows user to reveal their own passwords on input fields via context menu.
文件大小 8.46 KB
安装次数 505
当前版本 1.0
更新时间 2016-10-20
上架时间 2016-10-20
开发者 codeberg30
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/codeberg30/password-visibility-toggle-chrome-extension
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}