Purdue Auto Login

Bypass Purdue Login's 2-factor authentication.

Co to jest Purdue Auto Login?

Purdue Auto Login to rozszerzenie Chrome opracowane przez Han, a jego główną funkcją jest „Bypass Purdue Login's 2-factor authentication.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Purdue Auto Login

Pobierz pliki rozszerzeń Purdue Auto Login 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

                        An extension to allow you log in using Purdue SSO (formerly BoilerKey) without using Duo Mobile app.

Disclaimer: This extension is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Purdue University.

The source code is available from:
https://github.com/DennyDai/Purdue-Auto-Login                    

Podstawowe informacje o rozszerzeniu

Nazwa Purdue Auto Login Purdue Auto Login
ID obgndlolbiommialjcbnblclpinopdog
Oficjalny URL https://chromewebstore.google.com/detail/purdue-auto-login/obgndlolbiommialjcbnblclpinopdog
Opis Bypass Purdue Login's 2-factor authentication.
Rozmiar pliku 6.95 KB
Liczba instalacji 67
Aktualna Wersja 0.3.0
Ostatnia Aktualizacja 2023-09-07
Data Publikacji 2020-03-30
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Han
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/DennyDai/Purdue-Auto-Login
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Purdue Auto Login",
    "description": "Bypass Purdue Login's 2-factor authentication.",
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api-1b9bef70.duosecurity.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sso.purdue.edu\/*"
            ],
            "js": [
                "ssoPageInjection.js"
            ]
        },
        {
            "matches": [
                "https:\/\/api-1b9bef70.duosecurity.com\/frame\/v4\/auth\/*"
            ],
            "js": [
                "duoPageInjection.js"
            ]
        }
    ],
    "manifest_version": 3,
    "version": "0.3.0",
    "background": {
        "service_worker": "service_worker.js"
    }
}