Push Authenticator
Two Factor Authentication Simplified using Push Notification Verification
Vad är Push Authenticator?
Push Authenticator är en Chrome-tillägg utvecklad av push-authenticator-developers, och dess huvudfunktion är "Two Factor Authentication Simplified using Push Notification Verification".
Tilläggsskärmbilder
Ladda ner Push Authenticator-förlängningens CRX-fil
Ladda ner Push Authenticator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Allows you to receive two factor authentication codes via push notification instead of manually copying the code from your phone. Grundläggande Information om Tillägg
| Namn | |
| ID | dohecjonbhinehgkkamcnpkdakhghaej |
| Officiell webbadress | https://chromewebstore.google.com/detail/push-authenticator/dohecjonbhinehgkkamcnpkdakhghaej |
| Beskrivning | Two Factor Authentication Simplified using Push Notification Verification |
| Filstorlek | 486 KB |
| Antal Installationer | 550 |
| Aktuell Version | 2.1 |
| Senast Uppdaterad | 2016-08-01 |
| Publiceringsdatum | 2016-07-31 |
| Betyg | 1.00/5 Totalt 1 Betyg |
| Utvecklare | push-authenticator-developers |
| Betalningssätt | free |
| Tilläggswebbplats | https://explore.singular.net/authenticator |
| Stödda Språk | 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"
]
} | |