Google Classroom User Redirect
Redirects all Google classroom requests to specify the correct Google user ID
What is Google Classroom User Redirect?
Google Classroom User Redirect is a Chrome extension developed by https://matthew-cash.com, and its main feature is "Redirects all Google classroom requests to specify the correct Google user ID".
Extension Screenshots
Download Google Classroom User Redirect Extension CRX File
Download Google Classroom User Redirect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Google Classroom User Redirect |
ID | lcapnmcmmiolacjfdlfpjabfgdacgikk |
Official URL | https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk |
Description | Redirects all Google classroom requests to specify the correct Google user ID |
File Size | 6.64 KB |
Installation Count | 19 |
Current Version | 1.0.0 |
Last Updated | 2020-08-31 |
Publish Date | 2020-08-31 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://matthew-cash.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/MatthewCash/google-classroom-user-redirect |
Help Page URL | https://github.com/MatthewCash/google-classroom-user-redirect/issues |
Supported Languages | 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" } } |