Jenkins Notifier for Chrome™

Jenkins Notifier for Chrome™

Jenkins Notifier for Chrome™ is an (unofficial) extension for Jenkins ( http://jenkins-ci.org ). This extension notifies you of…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "name": "Jenkins Notifier for Chrome™",
  "version": "0.3.4",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "web_accessible_resources": [
    "images/blue.png",
    "images/red.png",
    "images/yellow.png",
    "images/grey.png"
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "Jenkins Notifier for Chrome™",
    "default_popup": "options.html"
  },
  "permissions": [
    "background",
    "notifications",
    "http://*/",
    "https://*/"
  ]
}