Push Authenticator
Two Factor Authentication Simplified using Push Notification Verification
Τι είναι το Push Authenticator;
Το Push Authenticator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον push-authenticator-developers, και η κύρια λειτουργία του είναι "Two Factor Authentication Simplified using Push Notification Verification".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Push Authenticator
Λήψη αρχείων επέκτασης 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" ] } |