Jenkins Terminal Colors

Provides terminal colors in the 'Console' panels of Jenkins

Что такое Jenkins Terminal Colors?

Jenkins Terminal Colors - это расширение Chrome, разработанное Denis Roussel, и его основная функция - "Provides terminal colors in the 'Console' panels of Jenkins".

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

screenshot

Скачать файл CRX расширения Jenkins Terminal Colors

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

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

                        What is changed :
- Background color and text colors fits 'black Solarized' theme.

How to use :
- Install this Chrome extension,
- Just go on any console panel on Jenkins instance,
- You don't need any Jenkins plugin.

This project is open-source : https://github.com/M6Web/JenkinsTerminalColors                    

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

Название Jenkins Terminal Colors Jenkins Terminal Colors
ID njhooapdhhjehkemlbobcdenmdbiooml
Официальный URL https://chromewebstore.google.com/detail/jenkins-terminal-colors/njhooapdhhjehkemlbobcdenmdbiooml
Описание Provides terminal colors in the 'Console' panels of Jenkins
Размер файла 107 KB
Количество установок 471
Текущая Версия 0.0.4
Последнее Обновление 2014-11-04
Дата публикации 2014-11-04
Рейтинг 2.40/5 Всего 15 оценок
Разработчик Denis Roussel
Тип оплаты free
URL страницы помощи https://github.com/M6Web/JenkinsTerminalColors
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jenkins Terminal Colors",
    "version": "0.0.4",
    "description": "Provides terminal colors in the 'Console' panels of Jenkins",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "web_accessible_resources": [
        "js\/vendor\/jquery-2.0.3.min.js",
        "js\/vendor\/jquery-2.0.3.min.map"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/job\/*\/*\/console",
                "*:\/\/*\/view\/*\/job\/*\/*\/console",
                "*:\/\/*\/job\/*\/*\/consoleFull",
                "*:\/\/*\/view\/*\/job\/*\/*\/consoleFull"
            ],
            "run_at": "document_end",
            "css": [
                "css\/jenkins-terminal-colors.css",
                "css\/jenkins-terminal-colors-characters.css"
            ],
            "js": [
                "js\/vendor\/jquery-2.0.3.min.js",
                "js\/jenkins-terminal-colors.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/job\/*\/*\/consoleText",
                "*:\/\/*\/view\/*\/job\/*\/*\/consoleText"
            ],
            "run_at": "document_end",
            "css": [
                "css\/jenkins-terminal-colors-text.css",
                "css\/jenkins-terminal-colors-characters.css"
            ],
            "js": [
                "js\/vendor\/jquery-2.0.3.min.js",
                "js\/jenkins-terminal-colors.js"
            ]
        }
    ]
}