BoilerKey Helper
An extension that alleviates Purdue's BoilerKey two-factor authentication.
Co je BoilerKey Helper?
BoilerKey Helper je rozšíření Chrome vyvinuté boilerkey-helper-publishers, a jeho hlavní funkcí je „An extension that alleviates Purdue's BoilerKey two-factor authentication.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření BoilerKey Helper
Stáhněte si soubory rozšíření BoilerKey Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | BoilerKey Helper |
ID | infadhgmajhpaoejgbennpkjnobdbkij |
Oficiální URL | https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij |
Popis | An extension that alleviates Purdue's BoilerKey two-factor authentication. |
Velikost souboru | 83 KB |
Počet instalací | 387 |
Aktuální Verze | 1.11 |
Poslední Aktualizace | 2023-03-02 |
Datum Vydání | 2019-04-02 |
Hodnocení | 5.00/5 Celkem 11 Hodnocení |
Vývojář | boilerkey-helper-publishers |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/zyonse/BoilerKeyExtension |
Podporované Jazyky | 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\/" ] } |