Google Classroom User Redirect
Redirects all Google classroom requests to specify the correct Google user ID
Hvad er Google Classroom User Redirect?
Google Classroom User Redirect er en Chrome-udvidelse udviklet af https://matthew-cash.com, og dens hovedfunktion er "Redirects all Google classroom requests to specify the correct Google user ID".
Udvidelsesskærmbilleder
Download Google Classroom User Redirect-udvidelses-CRX-fil
Download Google Classroom User Redirect-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Google Classroom User Redirect |
ID | lcapnmcmmiolacjfdlfpjabfgdacgikk |
Officiel URL | https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk |
Beskrivelse | Redirects all Google classroom requests to specify the correct Google user ID |
Filstørrelse | 6.64 KB |
Antal Installationer | 19 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2020-08-31 |
Udgivelsesdato | 2020-08-31 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | https://matthew-cash.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/MatthewCash/google-classroom-user-redirect |
Hjælpeside-URL | https://github.com/MatthewCash/google-classroom-user-redirect/issues |
Understøttede Sprog | 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" } } |