Google Classroom User Redirect
Redirects all Google classroom requests to specify the correct Google user ID
Co to jest Google Classroom User Redirect?
Google Classroom User Redirect to rozszerzenie Chrome opracowane przez https://matthew-cash.com, a jego główną funkcją jest „Redirects all Google classroom requests to specify the correct Google user ID”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Classroom User Redirect
Pobierz pliki rozszerzeń Google Classroom User Redirect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Google Classroom User Redirect |
ID | lcapnmcmmiolacjfdlfpjabfgdacgikk |
Oficjalny URL | https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk |
Opis | Redirects all Google classroom requests to specify the correct Google user ID |
Rozmiar pliku | 6.64 KB |
Liczba instalacji | 19 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-08-31 |
Data Publikacji | 2020-08-31 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://matthew-cash.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/MatthewCash/google-classroom-user-redirect |
Adres URL Strony Pomocy | https://github.com/MatthewCash/google-classroom-user-redirect/issues |
Obsługiwane Języki | 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" } } |