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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}