GitHub Account Switcher

A convenient extension that enables users to seamlessly switch between multiple GitHub accounts.

GitHub Account Switcherคืออะไร?

GitHub Account Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kevin Yue และคุณลักษณะหลักของมันคือ "A convenient extension that enables users to seamlessly switch between multiple GitHub accounts."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย GitHub Account Switcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The source code is open sourced at https://github.com/yuezk/github-account-switcher

The GitHub Account Switcher is a user-friendly browser extension that is designed to help developers effortlessly switch between multiple GitHub accounts without the need to log in and out constantly. It's perfect for developers who manage personal, work, or enterprise accounts, as this extension streamlines your workflow and lets you concentrate on your projects.

## Features

- Effortless account switching: Instantly switch between multiple GitHub accounts with a single click.
- Automatic account switching: Automatically switch to the relevant account when you visit a specific GitHub URL.
- Time-saving: Eliminates the need to manually log in and out of different accounts.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GitHub Account Switcher GitHub Account Switcher
ID glnlddiaebecckddpfcangohjebhhoea
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-account-switcher/glnlddiaebecckddpfcangohjebhhoea
คำอธิบาย A convenient extension that enables users to seamlessly switch between multiple GitHub accounts.
ขนาดไฟล์ 180 KB
จำนวนการติดตั้ง 1,568
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-06-29
วันที่เผยแพร่ 2023-04-09
คะแนน 5.00/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Kevin Yue
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/yuezk/github-account-switcher
URL หน้าช่วยเหลือ https://github.com/yuezk/github-account-switcher
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Account Switcher",
    "description": "A convenient extension that enables users to seamlessly switch between multiple GitHub accounts.",
    "version": "1.2.0",
    "manifest_version": 3,
    "icons": {
        "16": "img\/logo-16.png",
        "32": "img\/logo-32.png",
        "48": "img\/logo-48.png",
        "128": "img\/logo-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "img\/logo-48.png"
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.index.ts.5fbb284f.fe12608b.js"
            ],
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "assets\/index.ts.7b9c5654.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "resources": [
                "assets\/browser-polyfill.7e0c1479.js",
                "assets\/shared.beedccd5.js",
                "assets\/injected.b21eed8c.js",
                "assets\/index.ts.5fbb284f.js"
            ],
            "use_dynamic_url": true
        }
    ],
    "host_permissions": [
        "https:\/\/*.github.com\/"
    ],
    "permissions": [
        "cookies",
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ]
}