GithubX

Enhance Github

什麼是GithubX?

GithubX是由gaoyibobobo開發的Chrome擴展程式,該擴展的主要功能是“Enhance Github”。

擴展截圖

screenshot

下載GithubX擴展crx文件

下載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
官方網址 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';"
    }
}