Purdue Auto Login

Bypass Purdue Login's 2-factor authentication.

What is Purdue Auto Login?

Purdue Auto Login is a Chrome extension developed by Han, and its main feature is "Bypass Purdue Login's 2-factor authentication.".

Extension Screenshots

screenshot
screenshot

Download Purdue Auto Login Extension CRX File

Download Purdue Auto Login extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Purdue Auto Login Purdue Auto Login
ID obgndlolbiommialjcbnblclpinopdog
Official URL https://chromewebstore.google.com/detail/purdue-auto-login/obgndlolbiommialjcbnblclpinopdog
Description Bypass Purdue Login's 2-factor authentication.
File Size 6.95 KB
Installation Count 67
Current Version 0.3.0
Last Updated 2023-09-07
Publish Date 2020-03-30
Rating 5.00/5 Total 2 Ratings
Developer Han
Email [email protected]
Payment Type free
Extension Website https://github.com/DennyDai/Purdue-Auto-Login
Supported Languages 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"
    }
}