Jenkins Terminal Colors

Provides terminal colors in the 'Console' panels of Jenkins

Cos'è Jenkins Terminal Colors?

Jenkins Terminal Colors è un'estensione di Chrome sviluppata da Denis Roussel, e la sua funzione principale è "Provides terminal colors in the 'Console' panels of Jenkins".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Jenkins Terminal Colors

Scarica i file di estensione Jenkins Terminal Colors in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Jenkins Terminal Colors Jenkins Terminal Colors
ID njhooapdhhjehkemlbobcdenmdbiooml
URL Ufficiale https://chromewebstore.google.com/detail/jenkins-terminal-colors/njhooapdhhjehkemlbobcdenmdbiooml
Descrizione Provides terminal colors in the 'Console' panels of Jenkins
Dimensione del File 107 KB
Conteggio Installazioni 471
Versione Corrente 0.0.4
Ultimo Aggiornamento 2014-11-04
Data di Pubblicazione 2014-11-04
Valutazione 2.40/5 Totale 15 Valutazioni
Sviluppatore Denis Roussel
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/M6Web/JenkinsTerminalColors
Lingue Supportate 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"
            ]
        }
    ]
}