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.".
Снимки экрана расширения
Скачать файл CRX расширения BoilerKey Helper
Скачайте файлы расширений BoilerKey Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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\/" ] } |