Account Switcher for Google Apps

Use Alt + key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc

Qu'est-ce que Account Switcher for Google Apps ?

Account Switcher for Google Apps est une extension Chrome développée par Anshul Ahuja, et sa fonction principale est "Use Alt + key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Account Switcher for Google Apps

Téléchargez les fichiers d'extension Account Switcher for Google Apps au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension is for people using multiple Google accounts in their browser. It often becomes a hassle switching between the different accounts for various Google apps like Gmail, Google Docs, Google Play Music, Google Drive, Classroom, Meet etc. This extension gives you the ability to switch across users seamlessly using keyboard shortcuts in Chrome.

If this extension helped you out, support me by Buying me a coffee @ https://www.buymeacoffee.com/anshulahuja

So the extension makes use of that numbering.

To switch to say account number 2, you have to press Alt + 2 once you have already opened any of the supported google apps mentioned above.

Say you have gmail account 0 open, you can press Alt+2 to open the gmail account associated with account 2

Open sourced: https://github.com/anshulahuja98/account-switcher




Disclaimer: This extension is NOT affiliated to or endorsed by Google in any form.                    

Informations de Base sur l'Extension

Nom Account Switcher for Google Apps Account Switcher for Google Apps
ID gkdjdghoaaooagapfhmjgnagiigocjob
URL Officiel https://chromewebstore.google.com/detail/account-switcher-for-goog/gkdjdghoaaooagapfhmjgnagiigocjob
Description Use Alt + key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc
Taille du Fichier 14.83 KB
Nombre d'Installations 449
Version Actuelle 1.7.0
Dernière Mise à Jour 2022-09-20
Date de Publication 2020-04-21
Évaluation 3.22/5 Total 9 Évaluations
Développeur Anshul Ahuja
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/anshulahuja98/account-switcher
URL de la Page de Politique de Confidentialité https://side-hustle-labs.vercel.app/privacy/kindle2notion
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Account Switcher for Google Apps",
    "description": "Use Alt +  key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc",
    "version": "1.7.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "key_event.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "images\/tabFlipper16.png",
        "default_popup": "popup.html",
        "default_title": "Use Alt +  key to switch between google accounts"
    },
    "icons": {
        "16": "images\/tabFlipper16.png",
        "32": "images\/tabFlipper32.png",
        "48": "images\/tabFlipper48.png",
        "128": "images\/tabFlipper128.png"
    }
}