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" ] } |