Show Hide Passwords
A browser action to reveal your saved passwords.
Show Hide Passwordsとは何ですか?
Show Hide Passwordsはakilawickramasekaraによって開発されたChromeの拡張機能で、その主な機能は「A browser action to reveal your saved passwords.」です。
Show Hide Passwords拡張機能のCRXファイルをダウンロード
Show Hide Passwords拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This App will allow you to show saved passwords in the browser.. 拡張機能の基本情報
| 名前 | |
| ID | dakfaecjbjjojelpglfahpbibcgagbnj |
| 公式URL | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
| 説明 | A browser action to reveal your saved passwords. |
| ファイルサイズ | 53.56 KB |
| インストール数 | 13 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2018-01-27 |
| 公開日 | 2018-01-27 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | akilawickramasekara |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Show Hide Passwords",
"version": "1.1",
"description": "A browser action to reveal your saved passwords.",
"browser_action": {
"default_title": "Show My Passwords",
"default_icon": "padlock-4-16.png"
},
"icons": {
"16": "padlock-4-16.png",
"48": "padlock-4-48.png",
"128": "padlock-4-256.png"
},
"content_scripts": [
{
"js": [
"jquery-3.3.1.min.js",
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"scripts": [
"jquery-3.3.1.min.js",
"script.js"
],
"persistent": false
},
"manifest_version": 2,
"web_accessible_resources": [
"jquery-3.3.1.min.js",
"script.js"
],
"content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
} | |