AWS CloudWatch ANSI colors

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

Co to jest AWS CloudWatch ANSI colors?

AWS CloudWatch ANSI colors to rozszerzenie Chrome opracowane przez https://theolebrun.com, a jego główną funkcją jest „This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia AWS CloudWatch ANSI colors

Pobierz pliki rozszerzeń AWS CloudWatch ANSI colors w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa AWS CloudWatch ANSI colors AWS CloudWatch ANSI colors
ID feoelakkoolicldilidmgbhpgabiodcd
Oficjalny URL https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd
Opis This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
Rozmiar pliku 23.75 KB
Liczba instalacji 222
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2023-11-29
Data Publikacji 2020-06-03
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper https://theolebrun.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Falydoor/aws-cloudwatch-ansi-colors
Obsługiwane Języki 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"
    }
}