Purdue Auto Login

Bypass Purdue Login's 2-factor authentication.

Purdue Auto Loginとは何ですか?

Purdue Auto LoginはHanによって開発されたChromeの拡張機能で、その主な機能は「Bypass Purdue Login's 2-factor authentication.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Purdue Auto Login拡張機能のCRXファイルをダウンロード

Purdue Auto Login拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        An extension to allow you log in using Purdue SSO (formerly BoilerKey) without using Duo Mobile app.

Disclaimer: This extension is not endorsed by, directly affiliated with, maintained, authorized, or sponsored by Purdue University.

The source code is available from:
https://github.com/DennyDai/Purdue-Auto-Login                    

拡張機能の基本情報

名前 Purdue Auto Login Purdue Auto Login
ID obgndlolbiommialjcbnblclpinopdog
公式URL https://chromewebstore.google.com/detail/purdue-auto-login/obgndlolbiommialjcbnblclpinopdog
説明 Bypass Purdue Login's 2-factor authentication.
ファイルサイズ 6.95 KB
インストール数 67
現在のバージョン 0.3.0
最終更新日 2023-09-07
公開日 2020-03-30
評価 5.00/5 合計 2 レビュー
開発者 Han
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/DennyDai/Purdue-Auto-Login
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Purdue Auto Login",
    "description": "Bypass Purdue Login's 2-factor authentication.",
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api-1b9bef70.duosecurity.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sso.purdue.edu\/*"
            ],
            "js": [
                "ssoPageInjection.js"
            ]
        },
        {
            "matches": [
                "https:\/\/api-1b9bef70.duosecurity.com\/frame\/v4\/auth\/*"
            ],
            "js": [
                "duoPageInjection.js"
            ]
        }
    ],
    "manifest_version": 3,
    "version": "0.3.0",
    "background": {
        "service_worker": "service_worker.js"
    }
}