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是由https://theolebrun.com開發的Chrome擴展程式,該擴展的主要功能是“This extension replaces ANSI escape sequences with the HTML equivalent in AWS CloudWatch (V1 and V2)”。
擴展截圖
下載AWS CloudWatch ANSI colors擴展crx文件
下載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 |
ID | feoelakkoolicldilidmgbhpgabiodcd |
官方網址 | 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" } } |