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. 拡張機能の基本情報
| 名前 | |
| 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"
}
} | |