Bamboo Log Enhancer
Color Atlassian Bamboo log files
Bamboo Log Enhancerคืออะไร?
Bamboo Log Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Samuel Dion-Girardeau และคุณลักษณะหลักของมันคือ "Color Atlassian Bamboo log files"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bamboo Log Enhancer
ดาวน์โหลดไฟล์ส่วนขยาย Bamboo Log Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add color to your Atlassian Bamboo log files, in order to distinguish "build", "command", "error", and "simple" output. This project is still early stage, feel free to leave feedback, or contribute with pull requests! https://github.com/samueldg/bamboo-log-enhancer
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bamboo Log Enhancer |
ID | hokokhlkakimconkkofafoklkefhnnpe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bamboo-log-enhancer/hokokhlkakimconkkofafoklkefhnnpe |
คำอธิบาย | Color Atlassian Bamboo log files |
ขนาดไฟล์ | 13.97 KB |
จำนวนการติดตั้ง | 149 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2016-08-17 |
วันที่เผยแพร่ | 2016-08-16 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Samuel Dion-Girardeau |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/samueldg/bamboo-log-enhancer |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Bamboo Log Enhancer", "description": "Color Atlassian Bamboo log files", "homepage_url": "https:\/\/github.com\/samueldg\/bamboo-log-enhancer", "version": "0.1.0", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*.log", "file:\/\/\/*.log" ], "js": [ "js\/color_logs.js" ], "css": [ "css\/log_lines.css" ], "run_at": "document_idle" } ], "permissions": [ "*:\/\/*\/*.log" ], "optional_permissions": [ "file:\/\/\/*.log" ] } |