AWS CodeBuild Logs Colorizer [Unofficial]
Re-add terminal colors to AWS CodeBuild Logs and delete control characters.
What is AWS CodeBuild Logs Colorizer [Unofficial]?
AWS CodeBuild Logs Colorizer [Unofficial] is a Chrome extension developed by joshua.j.wilborn, and its main feature is "Re-add terminal colors to AWS CodeBuild Logs and delete control characters.".
Extension Screenshots
Download AWS CodeBuild Logs Colorizer [Unofficial] Extension CRX File
Download AWS CodeBuild Logs Colorizer [Unofficial] 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
This package is the recolor the AWS CodeBuild logs since it strips out the color escape sequences. This will make it much easier to read your logs, because it will match what you would see locally. Works with both background and foreground colors. It watches for changes in the AWS CodeBuild logs, and reruns the colorizing as each new line is added to the log. * 24-Bit True Color Support * 256 Color Support * Italic, bold, underline * Ability to toggle between original and colorized This extension is open sourced here: https://github.com/JoshuaJWilborn/colorize-the-logs The code is provided under MIT license, and contributions are welcome! The author is Joshua Wilborn. Website: https://wilborn.info
Extension Basic Information
Name | AWS CodeBuild Logs Colorizer [Unofficial] |
ID | mobkdmnncoiccdekgjjkkkdjoaankdbb |
Official URL | https://chromewebstore.google.com/detail/aws-codebuild-logs-colori/mobkdmnncoiccdekgjjkkkdjoaankdbb |
Description | Re-add terminal colors to AWS CodeBuild Logs and delete control characters. |
File Size | 45.33 KB |
Installation Count | 31 |
Current Version | 0.13 |
Last Updated | 2020-10-18 |
Publish Date | 2019-12-20 |
Rating | 3.67/5 Total 3 Ratings |
Developer | joshua.j.wilborn |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/JoshuaJWilborn/colorize-the-logs |
Help Page URL | https://github.com/JoshuaJWilborn/colorize-the-logs |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS CodeBuild Logs Colorizer [Unofficial]", "author": "Joshua Wilborn", "version": "0.13", "manifest_version": 2, "description": "Re-add terminal colors to AWS CodeBuild Logs and delete control characters.", "background": { "scripts": [ "dist\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.console.aws.amazon.com\/codesuite\/*" ], "js": [ "dist\/bundle.js" ], "css": [ "css\/styles.css" ], "run_at": "document_start" } ], "icons": { "128": "assets\/logo.png" }, "browser_action": { "default_icon": "assets\/logo.png" } } |