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 |
| 官方網址 | 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"
]
} | |