RUG Authentication Assistant

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

Τι είναι το RUG Authentication Assistant;

Το RUG Authentication Assistant είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sites.google.com/view/rug-authentication-assistant, και η κύρια λειτουργία του είναι "Generate 2FA authentication codes and automatically insert 2FA code on Brightspace (RUG)".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης RUG Authentication Assistant

Λήψη αρχείων επέκτασης 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"
            ]
        }
    ]
}