Infinipoint Okta Verify Auto Click
This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor
Hvad er Infinipoint Okta Verify Auto Click?
Infinipoint Okta Verify Auto Click er en Chrome-udvidelse udviklet af https://infinipoint.io, og dens hovedfunktion er "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".
Udvidelsesskærmbilleder
Download Infinipoint Okta Verify Auto Click-udvidelses-CRX-fil
Download Infinipoint Okta Verify Auto Click-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Infinipoint helper extension to automatically click the 'Verify' button on Okta logins when prompting for the custom IdP Factor.
Grundlæggende oplysninger om udvidelsen
Navn | Infinipoint Okta Verify Auto Click |
ID | joehjlfepkghfkhgjhbpmippehohidkd |
Officiel URL | https://chromewebstore.google.com/detail/infinipoint-okta-verify-a/joehjlfepkghfkhgjhbpmippehohidkd |
Beskrivelse | This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor |
Filstørrelse | 5.63 KB |
Antal Installationer | 2,509 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2023-05-29 |
Udgivelsesdato | 2023-05-29 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | https://infinipoint.io |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } } |