Purdue Auto Login
Bypass Purdue Login's 2-factor authentication.
Wat is Purdue Auto Login?
Purdue Auto Login is een Chrome-extensie ontwikkeld door Han, en de belangrijkste functie is "Bypass Purdue Login's 2-factor authentication.".
Extensie Screenshots
Download het CRX-bestand van de extensie Purdue Auto Login
Download Purdue Auto Login-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
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
Basisinformatie over de Extensie
Naam | Purdue Auto Login |
ID | obgndlolbiommialjcbnblclpinopdog |
Officiële URL | https://chromewebstore.google.com/detail/purdue-auto-login/obgndlolbiommialjcbnblclpinopdog |
Beschrijving | Bypass Purdue Login's 2-factor authentication. |
Bestandsgrootte | 6.95 KB |
Aantal Installaties | 67 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2023-09-07 |
Publicatiedatum | 2020-03-30 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Han |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/DennyDai/Purdue-Auto-Login |
Ondersteunde Talen | 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" } } |