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 - это расширение Chrome, разработанное https://infinipoint.io, и его основная функция - "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".
Снимки экрана расширения
Скачать файл CRX расширения Infinipoint Okta Verify Auto Click
Скачайте файлы расширений 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" ] } } |