Bamboo Log Enhancer

Color Atlassian Bamboo log files

Bamboo Log Enhancer란 무엇입니까?

Bamboo Log Enhancer은(는) Samuel Dion-Girardeau에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Color Atlassian Bamboo log files"입니다.

확장 프로그램 스크린샷

screenshot

Bamboo Log Enhancer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add color to your Atlassian Bamboo log files, in order to distinguish "build", "command", "error", and "simple" output.

This project is still early stage, feel free to leave feedback, or contribute with pull requests!

https://github.com/samueldg/bamboo-log-enhancer                    

확장 프로그램 기본 정보

이름 Bamboo Log Enhancer Bamboo Log Enhancer
ID hokokhlkakimconkkofafoklkefhnnpe
공식 URL https://chromewebstore.google.com/detail/bamboo-log-enhancer/hokokhlkakimconkkofafoklkefhnnpe
설명 Color Atlassian Bamboo log files
파일 크기 13.97 KB
설치 횟수 149
현재 버전 0.1.0
최근 업데이트 2016-08-17
출시 날짜 2016-08-16
평점 4.67/5 총 3 개의 평점
개발자 Samuel Dion-Girardeau
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/samueldg/bamboo-log-enhancer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bamboo Log Enhancer",
    "description": "Color Atlassian Bamboo log files",
    "homepage_url": "https:\/\/github.com\/samueldg\/bamboo-log-enhancer",
    "version": "0.1.0",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.log",
                "file:\/\/\/*.log"
            ],
            "js": [
                "js\/color_logs.js"
            ],
            "css": [
                "css\/log_lines.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "*:\/\/*\/*.log"
    ],
    "optional_permissions": [
        "file:\/\/\/*.log"
    ]
}