BoilerKey Helper

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

什么是BoilerKey Helper?

BoilerKey Helper是由boilerkey-helper-publishers开发的Chrome扩展程序,该扩展的主要功能是“An extension that alleviates Purdue's BoilerKey two-factor authentication.”。

扩展截图

screenshot

下载BoilerKey Helper扩展crx文件

下载BoilerKey Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 BoilerKey Helper BoilerKey Helper
ID infadhgmajhpaoejgbennpkjnobdbkij
官方URL https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij
简介 An extension that alleviates Purdue's BoilerKey two-factor authentication.
文件大小 83 KB
安装次数 387
当前版本 1.11
更新时间 2023-03-02
上架时间 2019-04-02
评分 5.00/5 共11次评分
开发者 boilerkey-helper-publishers
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/zyonse/BoilerKeyExtension
支持的语言 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\/"
    ]
}