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"
    }
}