BoilerKey Helper

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

Apa itu BoilerKey Helper?

BoilerKey Helper adalah ekstensi Chrome yang dikembangkan oleh boilerkey-helper-publishers, dan fitur utamanya adalah "An extension that alleviates Purdue's BoilerKey two-factor authentication.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi BoilerKey Helper

Unduh file ekstensi BoilerKey Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama BoilerKey Helper BoilerKey Helper
ID infadhgmajhpaoejgbennpkjnobdbkij
URL Resmi https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij
Deskripsi An extension that alleviates Purdue's BoilerKey two-factor authentication.
Ukuran File 83 KB
Jumlah Instalasi 387
Versi Saat Ini 1.11
Terakhir Diperbarui 2023-03-02
Tanggal Publikasi 2019-04-02
Penilaian 5.00/5 Total 11 Penilaian
Pengembang boilerkey-helper-publishers
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/zyonse/BoilerKeyExtension
Bahasa yang Didukung 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\/"
    ]
}