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