Google Classroom User Redirect

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

O que é Google Classroom User Redirect?

Google Classroom User Redirect é uma extensão do Chrome desenvolvida por https://matthew-cash.com, e sua principal característica é "Redirects all Google classroom requests to specify the correct Google user ID".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Classroom User Redirect

Baixe arquivos de extensão Google Classroom User Redirect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
URL Oficial https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
Descrição Redirects all Google classroom requests to specify the correct Google user ID
Tamanho do Arquivo 6.64 KB
Contagem de Instalações 19
Versão Atual 1.0.0
Última Atualização 2020-08-31
Data de Publicação 2020-08-31
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://matthew-cash.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/MatthewCash/google-classroom-user-redirect
URL da Página de Ajuda https://github.com/MatthewCash/google-classroom-user-redirect/issues
Idiomas Suportados 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"
    }
}