Bamboo Log Enhancer
Color Atlassian Bamboo log files
What is Bamboo Log Enhancer?
Bamboo Log Enhancer is a Chrome extension developed by Samuel Dion-Girardeau, and its main feature is "Color Atlassian Bamboo log files".
Extension Screenshots
Download Bamboo Log Enhancer Extension CRX File
Download Bamboo Log Enhancer 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
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
Extension Basic Information
Name | Bamboo Log Enhancer |
ID | hokokhlkakimconkkofafoklkefhnnpe |
Official URL | https://chromewebstore.google.com/detail/bamboo-log-enhancer/hokokhlkakimconkkofafoklkefhnnpe |
Description | Color Atlassian Bamboo log files |
File Size | 13.97 KB |
Installation Count | 149 |
Current Version | 0.1.0 |
Last Updated | 2016-08-17 |
Publish Date | 2016-08-16 |
Rating | 4.67/5 Total 3 Ratings |
Developer | Samuel Dion-Girardeau |
Payment Type | free |
Extension Website | https://github.com/samueldg/bamboo-log-enhancer |
Supported Languages | 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" ] } |