GithubX

Enhance Github

GithubX là gì?

GithubX là một tiện ích mở rộng Chrome được phát triển bởi gaoyibobobo, và tính năng chính của nó là "Enhance Github".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GithubX

Tải xuống các tệp mở rộng GithubX dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GithubX GithubX
ID nmcddfeclkbhehidjoadbmkaajoppapo
URL Chính Thức https://chromewebstore.google.com/detail/githubx/nmcddfeclkbhehidjoadbmkaajoppapo
Mô tả Enhance Github
Kích Thước Tệp 2.15 MB
Số Lần Cài Đặt 381
Phiên Bản Hiện Tại 1.0.0.1
Cập Nhật Lần Cuối 2022-06-29
Ngày Phát Hành 2022-03-15
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển gaoyibobobo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/riskers/github-plus-extension
URL Trang Trợ Giúp https://github.com/riskers/github-plus-extension
Ngôn Ngữ Được Hỗ Trợ 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';"
    }
}