Switch between Multiple Google Accounts
Keyboard shorcuts to Switch between Multiple Google Accounts
Co je Switch between Multiple Google Accounts?
Switch between Multiple Google Accounts je rozšíření Chrome vyvinuté Aditya, a jeho hlavní funkcí je „Keyboard shorcuts to Switch between Multiple Google Accounts“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Switch between Multiple Google Accounts
Stáhněte si soubory rozšíření Switch between Multiple Google Accounts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Switch between Multiple Google Accounts |
ID | nlmcbmeicbooompjafliaoiodifdhnpd |
Oficiální URL | https://chromewebstore.google.com/detail/switch-between-multiple-g/nlmcbmeicbooompjafliaoiodifdhnpd |
Popis | Keyboard shorcuts to Switch between Multiple Google Accounts |
Velikost souboru | 21.48 KB |
Počet instalací | 25 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2022-06-23 |
Datum Vydání | 2022-01-05 |
Hodnocení | 3.75/5 Celkem 4 Hodnocení |
Vývojář | Aditya |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |