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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में RUG Authentication Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}