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
Eメール [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\/"
    ]
}