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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}