Jenkins Terminal Colors

Provides terminal colors in the 'Console' panels of Jenkins

什麼是Jenkins Terminal Colors?

Jenkins Terminal Colors是由Denis Roussel開發的Chrome擴展程式,該擴展的主要功能是“Provides terminal colors in the 'Console' panels of Jenkins”。

擴展截圖

screenshot

下載Jenkins Terminal Colors擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}