AWS CloudWatch ANSI colors

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

Qu'est-ce que AWS CloudWatch ANSI colors ?

AWS CloudWatch ANSI colors est une extension Chrome développée par https://theolebrun.com, et sa fonction principale est "This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension AWS CloudWatch ANSI colors

Téléchargez les fichiers d'extension AWS CloudWatch ANSI colors au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom AWS CloudWatch ANSI colors AWS CloudWatch ANSI colors
ID feoelakkoolicldilidmgbhpgabiodcd
URL Officiel https://chromewebstore.google.com/detail/aws-cloudwatch-ansi-color/feoelakkoolicldilidmgbhpgabiodcd
Description This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)
Taille du Fichier 23.75 KB
Nombre d'Installations 222
Version Actuelle 1.6
Dernière Mise à Jour 2023-11-29
Date de Publication 2020-06-03
Évaluation 3.67/5 Total 3 Évaluations
Développeur https://theolebrun.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Falydoor/aws-cloudwatch-ansi-colors
Langues Prises en Charge 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"
    }
}