Push Authenticator
Two Factor Authentication Simplified using Push Notification Verification
Push Authenticator क्या है?
Push Authenticator push-authenticator-developers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Two Factor Authentication Simplified using Push Notification Verification"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Push Authenticator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |