GitHub Status
Display the build status next to the project name on github.
Что такое GitHub Status?
GitHub Status - это расширение Chrome, разработанное excellenteasy, и его основная функция - "Display the build status next to the project name on github.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Status
Скачайте файлы расширений GitHub Status в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Note: currently no support for private repos Основная информация о расширении
| Название | |
| ID | mgbkbopoincdiimlleifbpfjfhcndahp |
| Официальный URL | https://chromewebstore.google.com/detail/github-status/mgbkbopoincdiimlleifbpfjfhcndahp |
| Описание | Display the build status next to the project name on github. |
| Размер файла | 15.32 KB |
| Количество установок | 24 |
| Текущая Версия | 0.0.2 |
| Последнее Обновление | 2012-12-15 |
| Дата публикации | 2012-12-15 |
| Рейтинг | 1.00/5 Всего 1 оценок |
| Разработчик | excellenteasy |
| Тип оплаты | free |
| Официальный сайт расширения | http://excellenteasy.github.com/github-status/ |
| URL страницы помощи | https://github.com/excellenteasy/github-status/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.0.2",
"manifest_version": 2,
"name": "GitHub Status",
"description": "Display the build status next to the project name on github.",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"https:\/\/github.com\/*"
],
"run_at": "document_idle"
}
]
} | |