RUG Authentication Assistant
Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)
O que é RUG Authentication Assistant?
RUG Authentication Assistant é uma extensão do Chrome desenvolvida por https://sites.google.com/view/rug-authentication-assistant, e sua principal característica é "Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão RUG Authentication Assistant
Baixe arquivos de extensão RUG Authentication Assistant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | RUG Authentication Assistant |
ID | ajdbmhccdieijfeblgacbgjdlmbcoilf |
URL Oficial | https://chromewebstore.google.com/detail/rug-authentication-assist/ajdbmhccdieijfeblgacbgjdlmbcoilf |
Descrição | Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG) |
Tamanho do Arquivo | 329 KB |
Contagem de Instalações | 83 |
Versão Atual | 0.1.1 |
Última Atualização | 2023-11-17 |
Data de Publicação | 2023-02-27 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://sites.google.com/view/rug-authentication-assistant |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |