GithubX

Enhance Github

What is GithubX?

GithubX is a Chrome extension developed by gaoyibobobo, and its main feature is "Enhance Github".

Extension Screenshots

screenshot

Download GithubX Extension CRX File

Download GithubX extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name GithubX GithubX
ID nmcddfeclkbhehidjoadbmkaajoppapo
Official URL https://chromewebstore.google.com/detail/githubx/nmcddfeclkbhehidjoadbmkaajoppapo
Description Enhance Github
File Size 2.15 MB
Installation Count 381
Current Version 1.0.0.1
Last Updated 2022-06-29
Publish Date 2022-03-15
Rating 4.00/5 Total 1 Ratings
Developer gaoyibobobo
Email [email protected]
Payment Type free
Extension Website https://github.com/riskers/github-plus-extension
Help Page URL https://github.com/riskers/github-plus-extension
Supported Languages 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';"
    }
}