BoilerKey Helper

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

Co to jest BoilerKey Helper?

BoilerKey Helper to rozszerzenie Chrome opracowane przez boilerkey-helper-publishers, a jego główną funkcją jest „An extension that alleviates Purdue's BoilerKey two-factor authentication.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BoilerKey Helper

Pobierz pliki rozszerzeń BoilerKey Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa BoilerKey Helper BoilerKey Helper
ID infadhgmajhpaoejgbennpkjnobdbkij
Oficjalny URL https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij
Opis An extension that alleviates Purdue's BoilerKey two-factor authentication.
Rozmiar pliku 83 KB
Liczba instalacji 387
Aktualna Wersja 1.11
Ostatnia Aktualizacja 2023-03-02
Data Publikacji 2019-04-02
Ocena 5.00/5 Łącznie 11 Oceny
Deweloper boilerkey-helper-publishers
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/zyonse/BoilerKeyExtension
Obsługiwane Języki 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\/"
    ]
}