BoilerKey Helper
An extension that alleviates Purdue's BoilerKey two-factor authentication.
Wat is BoilerKey Helper?
BoilerKey Helper is een Chrome-extensie ontwikkeld door boilerkey-helper-publishers, en de belangrijkste functie is "An extension that alleviates Purdue's BoilerKey two-factor authentication.".
Extensie Screenshots
Download het CRX-bestand van de extensie BoilerKey Helper
Download BoilerKey Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | BoilerKey Helper |
ID | infadhgmajhpaoejgbennpkjnobdbkij |
Officiële URL | https://chromewebstore.google.com/detail/boilerkey-helper/infadhgmajhpaoejgbennpkjnobdbkij |
Beschrijving | An extension that alleviates Purdue's BoilerKey two-factor authentication. |
Bestandsgrootte | 83 KB |
Aantal Installaties | 387 |
Huidige Versie | 1.11 |
Laatst Bijgewerkt | 2023-03-02 |
Publicatiedatum | 2019-04-02 |
Beoordeling | 5.00/5 Totaal 11 Beoordelingen |
Ontwikkelaar | boilerkey-helper-publishers |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/zyonse/BoilerKeyExtension |
Ondersteunde Talen | 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\/" ] } |