Infinipoint Okta Verify Auto Click
This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor
What is Infinipoint Okta Verify Auto Click?
Infinipoint Okta Verify Auto Click is a Chrome extension developed by https://infinipoint.io, and its main feature is "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".
Extension Screenshots
Download Infinipoint Okta Verify Auto Click Extension CRX File
Download Infinipoint Okta Verify Auto Click extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Infinipoint helper extension to automatically click the 'Verify' button on Okta logins when prompting for the custom IdP Factor.
Extension Basic Information
Name | Infinipoint Okta Verify Auto Click |
ID | joehjlfepkghfkhgjhbpmippehohidkd |
Official URL | https://chromewebstore.google.com/detail/infinipoint-okta-verify-a/joehjlfepkghfkhgjhbpmippehohidkd |
Description | This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor |
File Size | 5.63 KB |
Installation Count | 2,509 |
Current Version | 0.0.1 |
Last Updated | 2023-05-29 |
Publish Date | 2023-05-29 |
Rating | 1.00/5 Total 1 Ratings |
Developer | https://infinipoint.io |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } } |