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是由https://infinipoint.io开发的Chrome扩展程序,该扩展的主要功能是“This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor”。
扩展截图
下载Infinipoint Okta Verify Auto Click扩展crx文件
下载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" ] } } |