ShowPassword
Show password when mouse over password fields.
ShowPasswordとは何ですか?
ShowPasswordはa161803398によって開発されたChromeの拡張機能で、その主な機能は「Show password when mouse over password fields.」です。
拡張機能のスクリーンショット
ShowPassword拡張機能のCRXファイルをダウンロード
ShowPassword拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Show password when mouse over password fields. Have you ever deleted whole password just because you typed a single letter wrong ? Now you can get rid of it. This extension will show you the password in plain text when cursor is over password fields. You can also change when to show password in options. Because many people doubt the security of this extension, I upload it's source code to GitHub. https://github.com/a161803398/ShowPassword Other mode: Show password when Double Click. Show password when On Focus. Show password when Press Ctrl Key. What's new in 1.2.1: Fix extension don't work on some websites that change input type What's new in 1.1.6: Bug fix What's new in 1.1.4: Fix the bug that google account password don't show.
拡張機能の基本情報
名前 | ShowPassword |
ID | bbiclfnbhommljbjcoelobnnnibemabl |
公式URL | https://chromewebstore.google.com/detail/showpassword/bbiclfnbhommljbjcoelobnnnibemabl |
説明 | Show password when mouse over password fields. |
ファイルサイズ | 13.61 KB |
インストール数 | 170,838 |
現在のバージョン | 1.2.1 |
最終更新日 | 2022-02-11 |
公開日 | 2017-11-30 |
評価 | 4.54/5 合計 334 レビュー |
開発者 | a161803398 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/a161803398/ShowPassword |
対応言語 | en,zh-CN,zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ShowPassword", "version": "1.2.1", "manifest_version": 3, "default_locale": "en", "description": "__MSG_extension_description__", "content_scripts": [ { "all_frames": true, "js": [ "showPassword.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "icons": { "128": "icon.png", "64": "icon.png", "32": "icon32.png", "16": "icon32.png" }, "options_page": "options.html", "permissions": [ "storage" ] } |