Purdue Auto Login

Bypass Purdue Login's 2-factor authentication.

Vad är Purdue Auto Login?

Purdue Auto Login är en Chrome-tillägg utvecklad av Han, och dess huvudfunktion är "Bypass Purdue Login's 2-factor authentication.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Purdue Auto Login-förlängningens CRX-fil

Ladda ner Purdue Auto Login-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Purdue Auto Login Purdue Auto Login
ID obgndlolbiommialjcbnblclpinopdog
Officiell webbadress https://chromewebstore.google.com/detail/purdue-auto-login/obgndlolbiommialjcbnblclpinopdog
Beskrivning Bypass Purdue Login's 2-factor authentication.
Filstorlek 6.95 KB
Antal Installationer 67
Aktuell Version 0.3.0
Senast Uppdaterad 2023-09-07
Publiceringsdatum 2020-03-30
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Han
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/DennyDai/Purdue-Auto-Login
Stödda Språk 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"
    }
}