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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/"
    ]
}