Show Password
Forgotten your password? Show password of password field. Source Code can be found in Github.
Show Passwordとは何ですか?
Show PasswordはSimon Meranerによって開発されたChromeの拡張機能で、その主な機能は「Forgotten your password? Show password of password field. Source Code can be found in Github.」です。
拡張機能のスクリーンショット
Show Password拡張機能のCRXファイルをダウンロード
Show Password拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Show hidden passwords in password fields. Right-click to a password field and click "Show Password"
拡張機能の基本情報
名前 | Show Password |
ID | aglbjehgamjplgcjkcembamkcaclecmi |
公式URL | https://chromewebstore.google.com/detail/show-password/aglbjehgamjplgcjkcembamkcaclecmi |
説明 | Forgotten your password? Show password of password field. Source Code can be found in Github. |
ファイルサイズ | 10.79 KB |
インストール数 | 28 |
現在のバージョン | 1.0.1 |
最終更新日 | 2019-04-18 |
公開日 | 2019-04-14 |
開発者 | Simon Meraner |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Password", "author": "smeraner", "version": "1.0.1", "description": "Forgotten your password? Show password of password field. Source Code can be found in Github.", "permissions": [ "contextMenus", "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "manifest_version": 2, "icons": { "16": "images\/img16.png", "32": "images\/img32.png", "48": "images\/img48.png", "128": "images\/img128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |