Account Switcher for Google Apps

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

Account Switcher for Google Apps क्या है?

Account Switcher for Google Apps Anshul Ahuja द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use Alt + key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Account Switcher for Google Apps एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Account Switcher for Google Apps Account Switcher for Google Apps
ID gkdjdghoaaooagapfhmjgnagiigocjob
आधिकारिक URL https://chromewebstore.google.com/detail/account-switcher-for-goog/gkdjdghoaaooagapfhmjgnagiigocjob
विवरण Use Alt + key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc
फ़ाइल का आकार 14.83 KB
स्थापना संख्या 449
वर्तमान संस्करण 1.7.0
अंतिम अपडेट 2022-09-20
प्रकाशन तिथि 2020-04-21
रेटिंग 3.22/5 कुल 9 रेटिंग्स
डेवलपर Anshul Ahuja
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/anshulahuja98/account-switcher
गोपनीयता नीति पृष्ठ URL https://side-hustle-labs.vercel.app/privacy/kindle2notion
समर्थित भाषाएँ 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"
    }
}