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 |
公式URL | 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 |
Eメール | [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" } } |