Google Classroom User Redirect

Redirects all Google classroom requests to specify the correct Google user ID

Was ist Google Classroom User Redirect?

Google Classroom User Redirect ist eine Chrome-Erweiterung, die von https://matthew-cash.com entwickelt wurde, und ihr Hauptmerkmal ist "Redirects all Google classroom requests to specify the correct Google user ID".

Erweiterungsscreenshots

screenshot

Google Classroom User Redirect-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Classroom User Redirect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Many people have a separate google account for personal use and educational use. When visiting google classroom from an external account (e.g. gmail), the classroom link is opened in the primary account, which for many people is not their educational account. This extension fixes this problem by changing the Google user ID in the browser to match the user ID for the user's educational account                    

Grundlegende Informationen zur Erweiterung

Name Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
Offizielle URL https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
Beschreibung Redirects all Google classroom requests to specify the correct Google user ID
Dateigröße 6.64 KB
Installationsanzahl 19
Aktuelle Version 1.0.0
Letztes Update 2020-08-31
Veröffentlichungsdatum 2020-08-31
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://matthew-cash.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/MatthewCash/google-classroom-user-redirect
Hilfeseite URL https://github.com/MatthewCash/google-classroom-user-redirect/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Classroom User Redirect",
    "short_name": "Classroom User Redirect",
    "description": "Redirects all Google classroom requests to specify the correct Google user ID",
    "version": "1.0.0",
    "options_page": "views\/options.html",
    "permissions": [
        "*:\/\/classroom.google.com\/",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_title": "Google Classroom User Redirect"
    }
}