RUG Authentication Assistant
Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)
Qu'est-ce que RUG Authentication Assistant ?
RUG Authentication Assistant est une extension Chrome développée par https://sites.google.com/view/rug-authentication-assistant, et sa fonction principale est "Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension RUG Authentication Assistant
Téléchargez les fichiers d'extension RUG Authentication Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This Chromium extension allows you to generate 2-Factor-Authentication codes directly in your browser. It can also automatically insert the generated 2FA code while logging in to the University of Groningen's online portal, Brightspace, so that you don't have to enter them yourself. This browser extension is exclusively for the use of RUG staff and students!
Informations de Base sur l'Extension
Nom | RUG Authentication Assistant |
ID | ajdbmhccdieijfeblgacbgjdlmbcoilf |
URL Officiel | https://chromewebstore.google.com/detail/rug-authentication-assist/ajdbmhccdieijfeblgacbgjdlmbcoilf |
Description | Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG) |
Taille du Fichier | 329 KB |
Nombre d'Installations | 83 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2023-11-17 |
Date de Publication | 2023-02-27 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://sites.google.com/view/rug-authentication-assistant |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en,ro |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_app_title__", "version": "0.1.1", "description": "__MSG_extension_description__", "default_locale": "en", "icons": { "32": "icons\/rug-32.png", "48": "icons\/rug-48.png", "96": "icons\/rug-96.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "__MSG_popup_title__", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.rug.nl\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |