Bamboo Log Enhancer

Color Atlassian Bamboo log files
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.1resigned1",
  "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"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{8fc18dc8-436a-4825-9ce3-d6a1959d221e}"
    }
  }
}