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文件

下载AWS CodeBuild Logs Colorizer [Unofficial]扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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