BoilerKey Helper

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

What is BoilerKey Helper?

BoilerKey Helper is a Chrome extension developed by boilerkey-helper-publishers, and its main feature is "An extension that alleviates Purdue's BoilerKey two-factor authentication.".

Extension Screenshots

screenshot

Download BoilerKey Helper Extension CRX File

Download BoilerKey Helper 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

                        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                    

Extension Basic Information

Name BoilerKey Helper BoilerKey Helper
ID infadhgmajhpaoejgbennpkjnobdbkij
Official URL https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij
Description An extension that alleviates Purdue's BoilerKey two-factor authentication.
File Size 83 KB
Installation Count 387
Current Version 1.11
Last Updated 2023-03-02
Publish Date 2019-04-02
Rating 5.00/5 Total 11 Ratings
Developer boilerkey-helper-publishers
Email [email protected]
Payment Type free
Extension Website https://github.com/zyonse/BoilerKeyExtension
Supported Languages 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\/"
    ]
}