AWS CodeBuild Logs Colorizer [Unofficial]
Re-add terminal colors to AWS CodeBuild Logs and delete control characters.
什麼是AWS CodeBuild Logs Colorizer [Unofficial]?
AWS CodeBuild Logs Colorizer [Unofficial]是由joshua.j.wilborn開發的Chrome擴展程式,該擴展的主要功能是“Re-add terminal colors to AWS CodeBuild Logs and delete control characters.”。
擴展截圖
下載AWS CodeBuild Logs Colorizer [Unofficial]擴展crx文件
下載AWS CodeBuild Logs Colorizer [Unofficial]擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | AWS CodeBuild Logs Colorizer [Unofficial] |
ID | mobkdmnncoiccdekgjjkkkdjoaankdbb |
官方網址 | https://chromewebstore.google.com/detail/aws-codebuild-logs-colori/mobkdmnncoiccdekgjjkkkdjoaankdbb |
簡介 | Re-add terminal colors to AWS CodeBuild Logs and delete control characters. |
檔案大小 | 45.33 KB |
安裝次數 | 31 |
目前版本 | 0.13 |
更新時間 | 2020-10-18 |
上架時間 | 2019-12-20 |
評分 | 3.67/5 共 3 次評分 |
開發者 | joshua.j.wilborn |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/JoshuaJWilborn/colorize-the-logs |
說明頁面URL | https://github.com/JoshuaJWilborn/colorize-the-logs |
支援的語言 | 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" } } |