Password Show Hide
This extension will allow to see store password on password field by adding a eye icon with input field
Password Show Hideとは何ですか?
Password Show HideはGreeLogixによって開発されたChromeの拡張機能で、その主な機能は「This extension will allow to see store password on password field by adding a eye icon with input field」です。
拡張機能のスクリーンショット
Password Show Hide拡張機能のCRXファイルをダウンロード
Password Show Hide拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Sometimes, we need to get/copy the saved password from password saved field data. This extension enable you to turn password field to text field.
It will add a show link with each password field and on clicking the link it will turn the password visibility to text. 拡張機能の基本情報
| 名前 | |
| ID | dkdkinddlfncaenemeelaklfcpggabfd |
| 公式URL | https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd |
| 説明 | This extension will allow to see store password on password field by adding a eye icon with input field |
| ファイルサイズ | 90.27 KB |
| インストール数 | 313 |
| 現在のバージョン | 1.3.1 |
| 最終更新日 | 2023-01-03 |
| 公開日 | 2020-10-20 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | GreeLogix |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://greelogix.com?page_id=6688 |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Password Show Hide",
"description": "This extension will allow to see store password on password field by adding a eye icon with input field",
"version": "1.3.1",
"homepage_url": "https:\/\/github.com\/abuzer",
"browser_action": {
"default_icon": "favicon.png",
"default_popup": "popup.html",
"default_title": "Passowrd Show\/Hide"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"all_frames": false,
"css": [
"css\/style.css"
],
"js": [
"scripts\/jquery.min.js",
"scripts\/content.js"
],
"web_accessible_resources": [
"jquery.min.js"
],
"run_at": "document_end"
}
]
} | |