Google Classroom User Redirect

Redirects all Google classroom requests to specify the correct Google user ID

Что такое Google Classroom User Redirect?

Google Classroom User Redirect - это расширение Chrome, разработанное https://matthew-cash.com, и его основная функция - "Redirects all Google classroom requests to specify the correct Google user ID".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Classroom User Redirect

Скачайте файлы расширений Google Classroom User Redirect в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
Официальный URL https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
Описание Redirects all Google classroom requests to specify the correct Google user ID
Размер файла 6.64 KB
Количество установок 19
Текущая Версия 1.0.0
Последнее Обновление 2020-08-31
Дата публикации 2020-08-31
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://matthew-cash.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/MatthewCash/google-classroom-user-redirect
URL страницы помощи https://github.com/MatthewCash/google-classroom-user-redirect/issues
Поддерживаемые языки 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"
    }
}