AWS CloudWatch ANSI colors

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

Was ist AWS CloudWatch ANSI colors?

AWS CloudWatch ANSI colors ist eine Chrome-Erweiterung, die von https://theolebrun.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".

Erweiterungsscreenshots

screenshot
screenshot

AWS CloudWatch ANSI colors-Erweiterungs-CRX-Datei herunterladen

Laden Sie AWS CloudWatch ANSI colors-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AWS CloudWatch ANSI colors AWS CloudWatch ANSI colors
ID feoelakkoolicldilidmgbhpgabiodcd
Offizielle URL https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd
Beschreibung This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
Dateigröße 23.75 KB
Installationsanzahl 222
Aktuelle Version 1.6
Letztes Update 2023-11-29
Veröffentlichungsdatum 2020-06-03
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler https://theolebrun.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Falydoor/aws-cloudwatch-ansi-colors
Unterstützte Sprachen 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"
    }
}