AWS CloudWatch ANSI colors

This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)

AWS CloudWatch ANSI colorsとは何ですか?

AWS CloudWatch ANSI colorsはhttps://theolebrun.comによって開発されたChromeの拡張機能で、その主な機能は「This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)」です。

拡張機能のスクリーンショット

screenshot
screenshot

AWS CloudWatch ANSI colors拡張機能のCRXファイルをダウンロード

AWS CloudWatch ANSI colors拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension replaces ANSI escape sequences in AWS CloudWatch to make logs easier to read.
This is very useful for logs generated by a Spring Boot or Node.js application for example.                    

拡張機能の基本情報

名前 AWS CloudWatch ANSI colors AWS CloudWatch ANSI colors
ID feoelakkoolicldilidmgbhpgabiodcd
公式URL https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd
説明 This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
ファイルサイズ 23.75 KB
インストール数 222
現在のバージョン 1.6
最終更新日 2023-11-29
公開日 2020-06-03
評価 3.67/5 合計 3 レビュー
開発者 https://theolebrun.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Falydoor/aws-cloudwatch-ansi-colors
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS CloudWatch ANSI colors",
    "version": "1.6",
    "description": "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)",
    "manifest_version": 3,
    "author": "Theo Lebrun",
    "homepage_url": "https:\/\/github.com\/Falydoor\/aws-cloudwatch-ansi-colors",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/cloudwatch\/home?region=*"
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    }
}