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 |
Eメール | [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" ] } } |