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 - это расширение Chrome, разработанное https://theolebrun.com, и его основная функция - "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения AWS CloudWatch ANSI colors

Скачайте файлы расширений 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
Электронная почта [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"
    }
}