Switch between Multiple Google Accounts

Keyboard shorcuts to Switch between Multiple Google Accounts

ما هو Switch between Multiple Google Accounts؟

Switch between Multiple Google Accounts هو إضافة Chrome تم تطويرها بواسطة Aditya، والميزة الرئيسية لها هي "Keyboard shorcuts to Switch between Multiple Google Accounts".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Switch between Multiple Google Accounts

قم بتنزيل ملفات الامتداد Switch between Multiple Google Accounts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}