BoilerKey Helper

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

ما هو BoilerKey Helper؟

BoilerKey Helper هو إضافة Chrome تم تطويرها بواسطة boilerkey-helper-publishers، والميزة الرئيسية لها هي "An extension that alleviates Purdue's BoilerKey two-factor authentication.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة BoilerKey Helper

قم بتنزيل ملفات الامتداد BoilerKey Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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\/"
    ]
}