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
官方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';"
    }
}