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