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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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 } ] } |