Google Classroom User Redirect
Redirects all Google classroom requests to specify the correct Google user ID
Cos'è Google Classroom User Redirect?
Google Classroom User Redirect è un'estensione di Chrome sviluppata da https://matthew-cash.com, e la sua funzione principale è "Redirects all Google classroom requests to specify the correct Google user ID".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Classroom User Redirect
Scarica i file di estensione Google Classroom User Redirect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Google Classroom User Redirect |
ID | lcapnmcmmiolacjfdlfpjabfgdacgikk |
URL Ufficiale | https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk |
Descrizione | Redirects all Google classroom requests to specify the correct Google user ID |
Dimensione del File | 6.64 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-08-31 |
Data di Pubblicazione | 2020-08-31 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://matthew-cash.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/MatthewCash/google-classroom-user-redirect |
URL della Pagina di Aiuto | https://github.com/MatthewCash/google-classroom-user-redirect/issues |
Lingue Supportate | 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" } } |