G-Switcher

Allows a user to easily switch between Google accounts

G-Switcherคืออะไร?

G-Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://skyler.cc และคุณลักษณะหลักของมันคือ "Allows a user to easily switch between Google accounts"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย G-Switcher

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}