G-Switcher

Allows a user to easily switch between Google accounts

Co to jest G-Switcher?

G-Switcher to rozszerzenie Chrome opracowane przez https://skyler.cc, a jego główną funkcją jest „Allows a user to easily switch between Google accounts”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia G-Switcher

Pobierz pliki rozszerzeń G-Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        G-Switcher is a web extension that makes it easy to switch between Google accounts.
 
This is especially useful for switching between a personal, and school/work account. Oftentimes our personal accounts are set as the default account, while we have our school/work account as secondary accounts. When working, it's often annoying to have to continually use Google's UI to switch to your account when going between Gmail, Google Classroom, Google Drive, and other Google services.
 
G-Switcher allows us to change our default Google account with only 1 click. Simply click the extension icon in your browser bar to cycle between accounts. After cycling through all of your accounts, you can click again to disable the extension, and again to re-enable it and restart on your first account.

This extension collects NO personal data.                    

Podstawowe informacje o rozszerzeniu

Nazwa G-Switcher G-Switcher
ID fkpnpedmgcpjnmglbjckfjhnodoacnan
Oficjalny URL https://chromewebstore.google.com/detail/g-switcher/fkpnpedmgcpjnmglbjckfjhnodoacnan
Opis Allows a user to easily switch between Google accounts
Rozmiar pliku 110 KB
Liczba instalacji 58
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2022-01-02
Data Publikacji 2020-09-20
Ocena 4.20/5 Łącznie 5 Oceny
Deweloper https://skyler.cc
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://skyler.cc/projects/g-switcher
Adres URL Strony Pomocy https://skyler.cc/contact
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "G-Switcher",
    "version": "1.1",
    "description": "Allows a user to easily switch between Google accounts",
    "icons": {
        "48": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "G-Switcher"
    },
    "background": {
        "scripts": [
            "action.js",
            "install.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "swap.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    }
}