Bamboo Log Enhancer
Color Atlassian Bamboo log files
Wat is Bamboo Log Enhancer?
Bamboo Log Enhancer is een Chrome-extensie ontwikkeld door Samuel Dion-Girardeau, en de belangrijkste functie is "Color Atlassian Bamboo log files".
Extensie Screenshots
Download het CRX-bestand van de extensie Bamboo Log Enhancer
Download Bamboo Log Enhancer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Bamboo Log Enhancer |
ID | hokokhlkakimconkkofafoklkefhnnpe |
Officiële URL | https://chromewebstore.google.com/detail/bamboo-log-enhancer/hokokhlkakimconkkofafoklkefhnnpe |
Beschrijving | Color Atlassian Bamboo log files |
Bestandsgrootte | 13.97 KB |
Aantal Installaties | 149 |
Huidige Versie | 0.1.0 |
Laatst Bijgewerkt | 2016-08-17 |
Publicatiedatum | 2016-08-16 |
Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Samuel Dion-Girardeau |
Betalingswijze | free |
Extensiewebsite | https://github.com/samueldg/bamboo-log-enhancer |
Ondersteunde Talen | 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" ] } |