Bamboo Log Enhancer
Color Atlassian Bamboo log files
什么是Bamboo Log Enhancer?
Bamboo Log Enhancer是由Samuel Dion-Girardeau开发的Chrome扩展程序,该扩展的主要功能是“Color Atlassian Bamboo log files”。
扩展截图
下载Bamboo Log Enhancer扩展crx文件
下载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" ] } |