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] เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joshua.j.wilborn และคุณลักษณะหลักของมันคือ "Re-add terminal colors to AWS CodeBuild Logs and delete control characters."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS CodeBuild Logs Colorizer [Unofficial]
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |