RUG Authentication Assistant

Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)

什么是RUG Authentication Assistant?

RUG Authentication Assistant是由https://sites.google.com/view/rug-authentication-assistant开发的Chrome扩展程序,该扩展的主要功能是“Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)”。

扩展截图

screenshot
screenshot

下载RUG Authentication Assistant扩展crx文件

下载RUG Authentication Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 RUG Authentication Assistant RUG Authentication Assistant
ID ajdbmhccdieijfeblgacbgjdlmbcoilf
官方URL https://chromewebstore.google.com/detail/rug-authentication-assist/ajdbmhccdieijfeblgacbgjdlmbcoilf
简介 Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)
文件大小 329 KB
安装次数 83
当前版本 0.1.1
更新时间 2023-11-17
上架时间 2023-02-27
评分 5.00/5 共1次评分
开发者 https://sites.google.com/view/rug-authentication-assistant
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}