github+travis

Display build status next to the project name on github.

Что такое github+travis?

github+travis - это расширение Chrome, разработанное Tomas Carnecky, и его основная функция - "Display build status next to the project name on github.".

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

screenshot
screenshot

Скачать файл CRX расширения github+travis

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

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

                        Displays the travis-ci build status icon next to the project name on github. When you click the icon it will take you right to the project page on travis-ci.org. Yes, that's all it does.                    

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

Название github+travis github+travis
ID klbmicjanlggbmanmpneloekhajhhbfb
Официальный URL https://chrome.google.com/webstore/detail/github+travis/klbmicjanlggbmanmpneloekhajhhbfb
Описание Display build status next to the project name on github.
Размер файла 11.49 KB
Количество установок 124
Текущая Версия 11
Последнее Обновление 2015-05-09
Дата публикации 2015-05-09
Рейтинг 3.47/5 Всего 15 оценок
Разработчик Tomas Carnecky
Тип оплаты free
Официальный сайт расширения https://caurea.org/2011/09/25/github-meets-travis-ci.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "11",
    "name": "github+travis",
    "description": "Display build status next to the project name on github.",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}