GitHub Enhancement Suite

A set of tools to enhance the GitHub experience.

Что такое GitHub Enhancement Suite?

GitHub Enhancement Suite - это расширение Chrome, разработанное DTwigs, и его основная функция - "A set of tools to enhance the GitHub experience.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GitHub Enhancement Suite

Скачайте файлы расширений GitHub Enhancement Suite в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The GitHub Enhancement Suite improves your GitHub experience.

Tools:
File Filter: Filter your github files by file type when viewing code changes.

Commit Compare: a small "down arrow" icon next to each commit in a PR allowing you to compare that commit to the latest commit in that PR.

Source Code:
https://github.com/DTwigs/FilterDiff                    

Основная информация о расширении

Название GitHub Enhancement Suite GitHub Enhancement Suite
ID eiehflbilhldhfbnolbnggcapbjmnpmo
Официальный URL https://chromewebstore.google.com/detail/github-enhancement-suite/eiehflbilhldhfbnolbnggcapbjmnpmo
Описание A set of tools to enhance the GitHub experience.
Размер файла 56.24 KB
Количество установок 260
Текущая Версия 0.4
Последнее Обновление 2014-02-22
Дата публикации 2014-02-21
Рейтинг 2.00/5 Всего 1 оценок
Разработчик DTwigs
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Enhancement Suite",
    "version": "0.4",
    "manifest_version": 2,
    "description": "A set of tools to enhance the GitHub experience.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "name": "Initialize GitHub Enhancement Suite",
        "default_icon": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/icon.png"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "css": [
                "mystyles.css"
            ],
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ]
        }
    ]
}