Switch between Multiple Google Accounts

Keyboard shorcuts to Switch between Multiple Google Accounts

Switch between Multiple Google Accounts क्या है?

Switch between Multiple Google Accounts Aditya द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keyboard shorcuts to Switch between Multiple Google Accounts"।

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

screenshot

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

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

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

                        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                    

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

नाम Switch between Multiple Google Accounts Switch between Multiple Google Accounts
ID nlmcbmeicbooompjafliaoiodifdhnpd
आधिकारिक URL https://chromewebstore.google.com/detail/switch-between-multiple-g/nlmcbmeicbooompjafliaoiodifdhnpd
विवरण Keyboard shorcuts to Switch between Multiple Google Accounts
फ़ाइल का आकार 21.48 KB
स्थापना संख्या 25
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-06-23
प्रकाशन तिथि 2022-01-05
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर Aditya
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}