AWS CodeBuild Logs Colorizer [Unofficial]

Re-add terminal colors to AWS CodeBuild Logs and delete control characters.

AWS CodeBuild Logs Colorizer [Unofficial]란 무엇입니까?

AWS CodeBuild Logs Colorizer [Unofficial]은(는) joshua.j.wilborn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Re-add terminal colors to AWS CodeBuild Logs and delete control characters."입니다.

확장 프로그램 스크린샷

screenshot

AWS CodeBuild Logs Colorizer [Unofficial] 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This package is the recolor the AWS CodeBuild logs since it strips out the color escape sequences. This will make it much easier to read your logs, because it will match what you would see locally. Works with both background and foreground colors.

It watches for changes in the AWS CodeBuild logs, and reruns the colorizing as each new line is added to the log.

* 24-Bit True Color Support
* 256 Color Support
* Italic, bold, underline
* Ability to toggle between original and colorized

This extension is open sourced here: https://github.com/JoshuaJWilborn/colorize-the-logs

The code is provided under MIT license, and contributions are welcome!

The author is Joshua Wilborn. Website: https://wilborn.info                    

확장 프로그램 기본 정보

이름 AWS CodeBuild Logs Colorizer [Unofficial] AWS CodeBuild Logs Colorizer [Unofficial]
ID mobkdmnncoiccdekgjjkkkdjoaankdbb
공식 URL https://chromewebstore.google.com/detail/aws-codebuild-logs-colori/mobkdmnncoiccdekgjjkkkdjoaankdbb
설명 Re-add terminal colors to AWS CodeBuild Logs and delete control characters.
파일 크기 45.33 KB
설치 횟수 31
현재 버전 0.13
최근 업데이트 2020-10-18
출시 날짜 2019-12-20
평점 3.67/5 총 3 개의 평점
개발자 joshua.j.wilborn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/JoshuaJWilborn/colorize-the-logs
도움말 페이지 URL https://github.com/JoshuaJWilborn/colorize-the-logs
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS CodeBuild Logs Colorizer [Unofficial]",
    "author": "Joshua Wilborn",
    "version": "0.13",
    "manifest_version": 2,
    "description": "Re-add terminal colors to AWS CodeBuild Logs and delete control characters.",
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/codesuite\/*"
            ],
            "js": [
                "dist\/bundle.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "assets\/logo.png"
    },
    "browser_action": {
        "default_icon": "assets\/logo.png"
    }
}