Infinipoint Okta Verify Auto Click

This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor

Cos'è Infinipoint Okta Verify Auto Click?

Infinipoint Okta Verify Auto Click è un'estensione di Chrome sviluppata da https://infinipoint.io, e la sua funzione principale è "This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Infinipoint Okta Verify Auto Click

Scarica i file di estensione Infinipoint Okta Verify Auto Click in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Infinipoint Okta Verify Auto Click Infinipoint Okta Verify Auto Click
ID joehjlfepkghfkhgjhbpmippehohidkd
URL Ufficiale https://chromewebstore.google.com/detail/infinipoint-okta-verify-a/joehjlfepkghfkhgjhbpmippehohidkd
Descrizione This extension automatically clicks the 'Verify' button on Okta.com when prompt for the custom IdP Factor
Dimensione del File 5.63 KB
Conteggio Installazioni 2,509
Versione Corrente 0.0.1
Ultimo Aggiornamento 2023-05-29
Data di Pubblicazione 2023-05-29
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore https://infinipoint.io
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}