BoilerKey Helper

An extension that alleviates Purdue's BoilerKey two-factor authentication.

Cos'è BoilerKey Helper?

BoilerKey Helper è un'estensione di Chrome sviluppata da boilerkey-helper-publishers, e la sua funzione principale è "An extension that alleviates Purdue's BoilerKey two-factor authentication.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BoilerKey Helper

Scarica i file di estensione BoilerKey Helper 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

                        The BoilerKey Helper extension is a simple way to bypass BoilerKey on your personal computer. After setting it up, it will automatically log you into Purdue's CAS.

This project is open source! Contribute by forking on GitHub! https://github.com/zyonse/BoilerKeyExtension                    

Informazioni di Base sull'Estensione

Nome BoilerKey Helper BoilerKey Helper
ID infadhgmajhpaoejgbennpkjnobdbkij
URL Ufficiale https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij
Descrizione An extension that alleviates Purdue's BoilerKey two-factor authentication.
Dimensione del File 83 KB
Conteggio Installazioni 387
Versione Corrente 1.11
Ultimo Aggiornamento 2023-03-02
Data di Pubblicazione 2019-04-02
Valutazione 5.00/5 Totale 11 Valutazioni
Sviluppatore boilerkey-helper-publishers
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/zyonse/BoilerKeyExtension
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BoilerKey Helper",
    "description": "An extension that alleviates Purdue's BoilerKey two-factor authentication.",
    "author": "The Purdue Community",
    "version": "1.11",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/purdue.brightspace.com\/*",
                "https:\/\/www.purdue.edu\/apps\/account\/cas\/*"
            ],
            "js": [
                "jsOTP.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "BoilerKey Helper",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/api-1b9bef70.duosecurity.com\/"
    ]
}