Jenkins Terminal Colors

Provides terminal colors in the 'Console' panels of Jenkins

Co to jest Jenkins Terminal Colors?

Jenkins Terminal Colors to rozszerzenie Chrome opracowane przez Denis Roussel, a jego główną funkcją jest „Provides terminal colors in the 'Console' panels of Jenkins”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Jenkins Terminal Colors

Pobierz pliki rozszerzeń Jenkins Terminal Colors w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Jenkins Terminal Colors Jenkins Terminal Colors
ID njhooapdhhjehkemlbobcdenmdbiooml
Oficjalny URL https://chromewebstore.google.com/detail/jenkins-terminal-colors/njhooapdhhjehkemlbobcdenmdbiooml
Opis Provides terminal colors in the 'Console' panels of Jenkins
Rozmiar pliku 107 KB
Liczba instalacji 471
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2014-11-04
Data Publikacji 2014-11-04
Ocena 2.40/5 Łącznie 15 Oceny
Deweloper Denis Roussel
Typ Płatności free
Adres URL Strony Pomocy https://github.com/M6Web/JenkinsTerminalColors
Obsługiwane Języki 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"
            ]
        }
    ]
}