BoilerKey Helper

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

BoilerKey Helper là gì?

BoilerKey Helper là một tiện ích mở rộng Chrome được phát triển bởi boilerkey-helper-publishers, và tính năng chính của nó là "An extension that alleviates Purdue's BoilerKey two-factor authentication.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BoilerKey Helper

Tải xuống các tệp mở rộng BoilerKey Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BoilerKey Helper BoilerKey Helper
ID infadhgmajhpaoejgbennpkjnobdbkij
URL Chính Thức https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij
Mô tả An extension that alleviates Purdue's BoilerKey two-factor authentication.
Kích Thước Tệp 83 KB
Số Lần Cài Đặt 387
Phiên Bản Hiện Tại 1.11
Cập Nhật Lần Cuối 2023-03-02
Ngày Phát Hành 2019-04-02
Đánh Giá 5.00/5 Tổng số 11 Đánh Giá
Nhà Phát Triển boilerkey-helper-publishers
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zyonse/BoilerKeyExtension
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}