Github Travis Stat
Display travis-ci build status and time chart, with status icon next to the project name on github.
Что такое Github Travis Stat?
Github Travis Stat - это расширение Chrome, разработанное wsywj61, и его основная функция - "Display travis-ci build status and time chart, with status icon next to the project name on github.".
Снимки экрана расширения
Скачать файл CRX расширения Github Travis Stat
Скачайте файлы расширений Github Travis Stat в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is an extension to display travis-ci status for repos in github. There is an interesting chart, which shows that recent 10 times build status and build duration changes. 该插件主要用于在github页面上显示对应仓库的travis-ci build状态,并使用图形化(图表)的形式展示近10次build的状态和时间变化。
Основная информация о расширении
Название | Github Travis Stat |
ID | ekkfhiophiaakmeppcnkblpbbjlnlnmh |
Официальный URL | https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh |
Описание | Display travis-ci build status and time chart, with status icon next to the project name on github. |
Размер файла | 120 KB |
Количество установок | 46 |
Текущая Версия | 2.1.6 |
Последнее Обновление | 2018-03-08 |
Дата публикации | 2018-03-08 |
Рейтинг | 4.29/5 Всего 7 оценок |
Разработчик | wsywj61 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Yaowenjie/travis-github-chrome-extension |
URL страницы помощи | https://github.com/Yaowenjie/travis-github-chrome-extension/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "web_accessible_resources": [ "travis-icon.png", "build-failing.svg", "build-success.svg", "build-unknown.svg" ], "version": "2.1.6", "name": "Github Travis Stat", "short_name": "build-stat", "description": "Display travis-ci build status and time chart, with status icon next to the project name on github.", "homepage_url": "https:\/\/github.com\/Yaowenjie\/travis-github-chrome-extension", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "https:\/\/api.travis-ci.org\/" ], "content_security_policy": "script-src 'self' https:\/\/github.com; object-src 'self'", "content_scripts": [ { "js": [ "bundle.js" ], "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_idle" } ] } |