Google Classroom User Redirect
Redirects all Google classroom requests to specify the correct Google user ID
Vad är Google Classroom User Redirect?
Google Classroom User Redirect är en Chrome-tillägg utvecklad av https://matthew-cash.com, och dess huvudfunktion är "Redirects all Google classroom requests to specify the correct Google user ID".
Tilläggsskärmbilder
Ladda ner Google Classroom User Redirect-förlängningens CRX-fil
Ladda ner Google Classroom User Redirect-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Google Classroom User Redirect |
ID | lcapnmcmmiolacjfdlfpjabfgdacgikk |
Officiell webbadress | https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk |
Beskrivning | Redirects all Google classroom requests to specify the correct Google user ID |
Filstorlek | 6.64 KB |
Antal Installationer | 19 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2020-08-31 |
Publiceringsdatum | 2020-08-31 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://matthew-cash.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/MatthewCash/google-classroom-user-redirect |
Hjälpsida URL | https://github.com/MatthewCash/google-classroom-user-redirect/issues |
Stödda Språk | 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" } } |