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開發的Chrome擴展程式,該擴展的主要功能是“Use Alt + key to switch between google accounts for various google apps like Gmail, Play music, Google Drive etc”。

擴展截圖

screenshot

下載Account Switcher for Google Apps擴展crx文件

下載Account Switcher for Google Apps擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}