Switch between Multiple Google Accounts
Keyboard shorcuts to Switch between Multiple Google Accounts
¿Qué es Switch between Multiple Google Accounts?
Switch between Multiple Google Accounts es una extensión de Chrome desarrollada por Aditya, y su función principal es "Keyboard shorcuts to Switch between Multiple Google Accounts".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Switch between Multiple Google Accounts
Descarga archivos de extensión Switch between Multiple Google Accounts en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Switch between Multiple Google Accounts |
ID | nlmcbmeicbooompjafliaoiodifdhnpd |
URL Oficial | https://chromewebstore.google.com/detail/switch-between-multiple-g/nlmcbmeicbooompjafliaoiodifdhnpd |
Descripción | Keyboard shorcuts to Switch between Multiple Google Accounts |
Tamaño del Archivo | 21.48 KB |
Cantidad de Instalaciones | 25 |
Versión Actual | 1.0 |
Última Actualización | 2022-06-23 |
Fecha de Publicación | 2022-01-05 |
Calificación | 3.75/5 Total de 4 Calificaciones |
Desarrollador | Aditya |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |