Infinipoint Okta Verify Auto Click
This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor
Τι είναι το Infinipoint Okta Verify Auto Click;
Το Infinipoint Okta Verify Auto Click είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://infinipoint.io, και η κύρια λειτουργία του είναι "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Infinipoint Okta Verify Auto Click
Λήψη αρχείων επέκτασης Infinipoint Okta Verify Auto Click σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Infinipoint helper extension to automatically click the 'Verify' button on Okta logins when prompting for the custom IdP Factor.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Infinipoint Okta Verify Auto Click |
ID | joehjlfepkghfkhgjhbpmippehohidkd |
Επίσημο URL | https://chromewebstore.google.com/detail/infinipoint-okta-verify-a/joehjlfepkghfkhgjhbpmippehohidkd |
Περιγραφή | This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor |
Μέγεθος Αρχείου | 5.63 KB |
Αριθμός Εγκαταστάσεων | 2,509 |
Τρέχουσα Έκδοση | 0.0.1 |
Τελευταία Ενημέρωση | 2023-05-29 |
Ημερομηνία Δημοσίευσης | 2023-05-29 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://infinipoint.io |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Infinipoint Okta Verify Auto Click", "version": "0.0.1", "description": "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor", "permissions": [ "scripting", "tabs" ], "host_permissions": [ "https:\/\/*.okta.com\/signin\/verify\/custom\/claims_provider" ], "icons": { "16": "infp.png", "32": "infp.png", "48": "infp.png", "128": "infp.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.okta.com\/signin\/verify\/custom\/claims_provider" ], "js": [ "scripts\/content.js" ] } ], "background": { "service_worker": "background.js", "matches": [ "https:\/\/*.okta.com\/signin\/verify\/custom\/claims_provider" ] } } |