Purdue Auto Login

Bypass Purdue Login's 2-factor authentication.

Purdue Auto Login là gì?

Purdue Auto Login là một tiện ích mở rộng Chrome được phát triển bởi Han, và tính năng chính của nó là "Bypass Purdue Login's 2-factor authentication.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Purdue Auto Login 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

                        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                    

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

Tên Purdue Auto Login Purdue Auto Login
ID obgndlolbiommialjcbnblclpinopdog
URL Chính Thức https://chromewebstore.google.com/detail/purdue-auto-login/obgndlolbiommialjcbnblclpinopdog
Mô tả Bypass Purdue Login's 2-factor authentication.
Kích Thước Tệp 6.95 KB
Số Lần Cài Đặt 67
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2023-09-07
Ngày Phát Hành 2020-03-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Han
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DennyDai/Purdue-Auto-Login
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}