Jenkins Terminal Colors
Provides terminal colors in the 'Console' panels of Jenkins
What is Jenkins Terminal Colors?
Jenkins Terminal Colors is a Chrome extension developed by Denis Roussel, and its main feature is "Provides terminal colors in the 'Console' panels of Jenkins".
Extension Screenshots
Download Jenkins Terminal Colors Extension CRX File
Download Jenkins Terminal Colors 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
What is changed : - Background color and text colors fits 'black Solarized' theme. How to use : - Install this Chrome extension, - Just go on any console panel on Jenkins instance, - You don't need any Jenkins plugin. This project is open-source : https://github.com/M6Web/JenkinsTerminalColors
Extension Basic Information
Name | Jenkins Terminal Colors |
ID | njhooapdhhjehkemlbobcdenmdbiooml |
Official URL | https://chromewebstore.google.com/detail/jenkins-terminal-colors/njhooapdhhjehkemlbobcdenmdbiooml |
Description | Provides terminal colors in the 'Console' panels of Jenkins |
File Size | 107 KB |
Installation Count | 471 |
Current Version | 0.0.4 |
Last Updated | 2014-11-04 |
Publish Date | 2014-11-04 |
Rating | 2.40/5 Total 15 Ratings |
Developer | Denis Roussel |
Payment Type | free |
Help Page URL | https://github.com/M6Web/JenkinsTerminalColors |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jenkins Terminal Colors", "version": "0.0.4", "description": "Provides terminal colors in the 'Console' panels of Jenkins", "manifest_version": 2, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "web_accessible_resources": [ "js\/vendor\/jquery-2.0.3.min.js", "js\/vendor\/jquery-2.0.3.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/*\/job\/*\/*\/console", "*:\/\/*\/view\/*\/job\/*\/*\/console", "*:\/\/*\/job\/*\/*\/consoleFull", "*:\/\/*\/view\/*\/job\/*\/*\/consoleFull" ], "run_at": "document_end", "css": [ "css\/jenkins-terminal-colors.css", "css\/jenkins-terminal-colors-characters.css" ], "js": [ "js\/vendor\/jquery-2.0.3.min.js", "js\/jenkins-terminal-colors.js" ] }, { "matches": [ "*:\/\/*\/job\/*\/*\/consoleText", "*:\/\/*\/view\/*\/job\/*\/*\/consoleText" ], "run_at": "document_end", "css": [ "css\/jenkins-terminal-colors-text.css", "css\/jenkins-terminal-colors-characters.css" ], "js": [ "js\/vendor\/jquery-2.0.3.min.js", "js\/jenkins-terminal-colors.js" ] } ] } |