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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}