Google Classroom User Redirect

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

Co je Google Classroom User Redirect?

Google Classroom User Redirect je rozšíření Chrome vyvinuté https://matthew-cash.com, a jeho hlavní funkcí je „Redirects all Google classroom requests to specify the correct Google user ID“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Classroom User Redirect

Stáhněte si soubory rozšíření Google Classroom User Redirect ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
Oficiální URL https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
Popis Redirects all Google classroom requests to specify the correct Google user ID
Velikost souboru 6.64 KB
Počet instalací 19
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-08-31
Datum Vydání 2020-08-31
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://matthew-cash.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/MatthewCash/google-classroom-user-redirect
URL Stránky Nápovědy https://github.com/MatthewCash/google-classroom-user-redirect/issues
Podporované Jazyky 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"
    }
}