Purdue Auto Login

Bypass Purdue Login's 2-factor authentication.

Что такое Purdue Auto Login?

Purdue Auto Login - это расширение Chrome, разработанное Han, и его основная функция - "Bypass Purdue Login's 2-factor authentication.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Purdue Auto Login

Скачайте файлы расширений 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
Электронная почта [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"
    }
}