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".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Infinipoint Okta Verify Auto Click

قم بتنزيل ملفات الامتداد Infinipoint Okta Verify Auto Click بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Infinipoint Okta Verify Auto Click 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"
        ]
    }
}