Reveal Passwords
Toggle password fields to text fields so you can see what you've typed (or mistyped).
什么是Reveal Passwords?
Reveal Passwords是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Toggle password fields to text fields so you can see what you've typed (or mistyped).”。
扩展截图
下载Reveal Passwords扩展crx文件
下载Reveal Passwords扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.
扩展基本信息
名称 | Reveal Passwords |
ID | kbbbdhddofjfncbijifmonfffhkphkhg |
官方URL | https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg |
简介 | Toggle password fields to text fields so you can see what you've typed (or mistyped). |
文件大小 | 15.49 KB |
安装次数 | 311 |
当前版本 | 1.0.0 |
更新时间 | 2016-06-12 |
上架时间 | 2016-06-11 |
评分 | 5.00/5 共1次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/ctrl-freaks/reveal-passwords |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal Passwords", "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).", "version": "1.0.0", "short_name": "revealpasswords", "minimum_chrome_version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Reveal Passwords", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png", "64": "icons\/inactive-64.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |