Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Что такое Jenkins Status Tab?
Jenkins Status Tab - это расширение Chrome, разработанное christianvuerings, и его основная функция - "Show the status of a Jenkins build in the tab title.".
Снимки экрана расширения
Скачать файл CRX расширения Jenkins Status Tab
Скачайте файлы расширений Jenkins Status Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
Основная информация о расширении
Название | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
Официальный URL | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
Описание | Show the status of a Jenkins build in the tab title. |
Размер файла | 30.56 KB |
Количество установок | 17 |
Текущая Версия | 0.0.1 |
Последнее Обновление | 2016-11-23 |
Дата публикации | 2016-11-23 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | christianvuerings |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/christianvuerings/jenkins-status-tab |
URL страницы помощи | https://github.com/christianvuerings/jenkins-status-tab/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Jenkins Status Tab", "description": "Show the status of a Jenkins build in the tab title.", "version": "0.0.1", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "icons.js", "execute.js" ] } ], "icons": { "32": "32.png", "64": "64.png", "128": "128.png" }, "browser_action": { "default_title": "Make this page blue" }, "permissions": [ "tabs", "activeTab", "https:\/\/*\/", "http:\/\/*\/" ] } |