Push Authenticator
Two Factor Authentication Simplified using Push Notification Verification
Push Authenticatorとは何ですか?
Push Authenticatorはpush-authenticator-developersによって開発されたChromeの拡張機能で、その主な機能は「Two Factor Authentication Simplified using Push Notification Verification」です。
拡張機能のスクリーンショット
Push Authenticator拡張機能のCRXファイルをダウンロード
Push Authenticator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Allows you to receive two factor authentication codes via push notification instead of manually copying the code from your phone. 拡張機能の基本情報
| 名前 | |
| ID | dohecjonbhinehgkkamcnpkdakhghaej |
| 公式URL | https://chromewebstore.google.com/detail/push-authenticator/dohecjonbhinehgkkamcnpkdakhghaej |
| 説明 | Two Factor Authentication Simplified using Push Notification Verification |
| ファイルサイズ | 486 KB |
| インストール数 | 550 |
| 現在のバージョン | 2.1 |
| 最終更新日 | 2016-08-01 |
| 公開日 | 2016-07-31 |
| 評価 | 1.00/5 合計 1 レビュー |
| 開発者 | push-authenticator-developers |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://explore.singular.net/authenticator |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Push Authenticator",
"description": "Two Factor Authentication Simplified using Push Notification Verification",
"version": "2.1",
"icons": {
"128": "icons\/app_icon_128x128.png"
},
"browser_action": {
"default_icon": "icons\/app_icon_38x38.png",
"default_popup": "popup.html",
"default_title": "Push Authenticator"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [],
"js": [
"jquery-2.2.4.min.js",
"content_script.js"
]
}
],
"background": {
"scripts": [
"jquery-2.2.4.min.js",
"sjcl.js",
"background.js"
]
},
"permissions": [
"activeTab",
"clipboardWrite",
"gcm",
"storage"
]
} | |