GithubX

Enhance Github

GithubXคืออะไร?

GithubX เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gaoyibobobo และคุณลักษณะหลักของมันคือ "Enhance Github"

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

screenshot

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

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

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

                        Easy to manage your Github:

1. github stars: grouping and tagging your stars by yourself
3. github gists: grouping and tagging your gists by yourself 

Github: https://github.com/riskers/github-plus-extension                    

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

ชื่อ GithubX GithubX
ID nmcddfeclkbhehidjoadbmkaajoppapo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/githubx/nmcddfeclkbhehidjoadbmkaajoppapo
คำอธิบาย Enhance Github
ขนาดไฟล์ 2.15 MB
จำนวนการติดตั้ง 381
เวอร์ชันปัจจุบัน 1.0.0.1
อัปเดตครั้งล่าสุด 2022-06-29
วันที่เผยแพร่ 2022-03-15
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา gaoyibobobo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/riskers/github-plus-extension
URL หน้าช่วยเหลือ https://github.com/riskers/github-plus-extension
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0.1",
    "name": "GithubX",
    "description": "__MSG_description__",
    "default_locale": "en",
    "action": {
        "default_title": "GithubX"
    },
    "icons": {
        "48": "assets\/logo48.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.js",
                "*.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "webRequest",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "options_page": "options\/index.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline';"
    }
}