G-Switcher

Allows a user to easily switch between Google accounts

G-Switcherとは何ですか?

G-Switcherはhttps://skyler.ccによって開発されたChromeの拡張機能で、その主な機能は「Allows a user to easily switch between Google accounts」です。

拡張機能のスクリーンショット

screenshot

G-Switcher拡張機能のCRXファイルをダウンロード

G-Switcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 G-Switcher G-Switcher
ID fkpnpedmgcpjnmglbjckfjhnodoacnan
公式URL https://chromewebstore.google.com/detail/g-switcher/fkpnpedmgcpjnmglbjckfjhnodoacnan
説明 Allows a user to easily switch between Google accounts
ファイルサイズ 110 KB
インストール数 58
現在のバージョン 1.1
最終更新日 2022-01-02
公開日 2020-09-20
評価 4.20/5 合計 5 レビュー
開発者 https://skyler.cc
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://skyler.cc/projects/g-switcher
ヘルプページのURL https://skyler.cc/contact
対応言語 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"
    }
}