Colorize CloudWatch
Colorize AWS Cloudwatch logs based on log type; warning, error, info
What is Colorize CloudWatch?
Colorize CloudWatch is a Chrome extension developed by Yusuf YILDIZ, and its main feature is "Colorize AWS Cloudwatch logs based on log type; warning, error, info".
Extension Screenshots
Download Colorize CloudWatch Extension CRX File
Download Colorize CloudWatch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Easily read Amazon Cloud Services CloudWatch logs with error, warning, info and debug colors. It doesn't collect any user data and it is free to use. Contributions are welcome: https://github.com/yusufff/colorize-cloudwatch
Extension Basic Information
Name | Colorize CloudWatch |
ID | jhldmkcnoaemijffmelcbjpkbpghegeh |
Official URL | https://chromewebstore.google.com/detail/colorize-cloudwatch/jhldmkcnoaemijffmelcbjpkbpghegeh |
Description | Colorize AWS Cloudwatch logs based on log type; warning, error, info |
File Size | 786 KB |
Installation Count | 265 |
Current Version | 0.1.3 |
Last Updated | 2020-11-13 |
Publish Date | 2020-05-31 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Yusuf YILDIZ |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/yusufff/colorize-cloudwatch |
Help Page URL | https://github.com/yusufff/colorize-cloudwatch |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Colorize CloudWatch", "description": "Colorize AWS Cloudwatch logs based on log type; warning, error, info", "version": "0.1.3", "manifest_version": 2, "icons": { "16": "img\/logo_16.png", "32": "img\/logo_32.png", "64": "img\/logo_64.png", "128": "img\/logo_128.png" }, "browser_action": { "default_popup": "hello.html", "default_icon": "img\/logo_16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.console.aws.amazon.com\/cloudwatch\/*" ], "js": [ "colorize.js" ] } ] } |