Infinipoint Okta Verify Auto Click
This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor
Vad är Infinipoint Okta Verify Auto Click?
Infinipoint Okta Verify Auto Click är en Chrome-tillägg utvecklad av https://infinipoint.io, och dess huvudfunktion är "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".
Tilläggsskärmbilder
Ladda ner Infinipoint Okta Verify Auto Click-förlängningens CRX-fil
Ladda ner Infinipoint Okta Verify Auto Click-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
Infinipoint helper extension to automatically click the 'Verify' button on Okta logins when prompting for the custom IdP Factor.
Grundläggande Information om Tillägg
Namn | Infinipoint Okta Verify Auto Click |
ID | joehjlfepkghfkhgjhbpmippehohidkd |
Officiell webbadress | https://chromewebstore.google.com/detail/infinipoint-okta-verify-a/joehjlfepkghfkhgjhbpmippehohidkd |
Beskrivning | This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor |
Filstorlek | 5.63 KB |
Antal Installationer | 2,509 |
Aktuell Version | 0.0.1 |
Senast Uppdaterad | 2023-05-29 |
Publiceringsdatum | 2023-05-29 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | https://infinipoint.io |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } } |