Switch between Multiple Google Accounts

Keyboard shorcuts to Switch between Multiple Google Accounts

O que é Switch between Multiple Google Accounts?

Switch between Multiple Google Accounts é uma extensão do Chrome desenvolvida por Aditya, e sua principal característica é "Keyboard shorcuts to Switch between Multiple Google Accounts".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Switch between Multiple Google Accounts

Baixe arquivos de extensão Switch between Multiple Google Accounts 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

                        Keyboard shortcuts to Switch between different accounts of various Google products.

You can use any one of the below two shortcuts (If one of the below doesn't work or is assigned to other plugin you can use the other one ) -

1) Press ALT+ 1, ALT + 2, .... ALT+9 to switch to first, second, third.. google account.
2) Press SHIFT+ 1, SHIFT + 2, ... SHIFT +9 to switch to first, second, third.. google 
account.

It works on:-
Gmail
Drive
Meet
Calendar
Docs
Sheets
Slides
Forms
Keep
Photos
Maps                    

Informações Básicas da Extensão

Nome Switch between Multiple Google Accounts Switch between Multiple Google Accounts
ID nlmcbmeicbooompjafliaoiodifdhnpd
URL Oficial https://chromewebstore.google.com/detail/switch-between-multiple-g/nlmcbmeicbooompjafliaoiodifdhnpd
Descrição Keyboard shorcuts to Switch between Multiple Google Accounts
Tamanho do Arquivo 21.48 KB
Contagem de Instalações 25
Versão Atual 1.0
Última Atualização 2022-06-23
Data de Publicação 2022-01-05
Classificação 3.75/5 Total de 4 Avaliações
Desenvolvedor Aditya
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Switch between Multiple Google Accounts",
    "description": "Keyboard shorcuts to Switch between Multiple Google Accounts",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "key_press.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}