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 là gì?

Infinipoint Okta Verify Auto Click là một tiện ích mở rộng Chrome được phát triển bởi https://infinipoint.io, và tính năng chính của nó là "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Infinipoint Okta Verify Auto Click

Tải xuống các tệp mở rộng Infinipoint Okta Verify Auto Click dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Infinipoint helper extension to automatically click the 'Verify' button on Okta logins when prompting for the custom IdP Factor.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Infinipoint Okta Verify Auto Click Infinipoint Okta Verify Auto Click
ID joehjlfepkghfkhgjhbpmippehohidkd
URL Chính Thức https://chromewebstore.google.com/detail/infinipoint-okta-verify-a/joehjlfepkghfkhgjhbpmippehohidkd
Mô tả This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor
Kích Thước Tệp 5.63 KB
Số Lần Cài Đặt 2,509
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2023-05-29
Ngày Phát Hành 2023-05-29
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://infinipoint.io
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}