Yet Another Jenkins Notifier

Yet Another Jenkins Notifier

This extension notifies you on Jenkins build results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Yet Another Jenkins Notifier",
  "description": "This extension notifies you on Jenkins build results.",
  "author": "Guillaume Girou",
  "homepage_url": "https://github.com/ggirou/yet-another-jenkins-notifier",
  "version": "2.3.1",
  "minimum_chrome_version": "45",
  "browser_action": {
    "browser_style": false,
    "default_icon": "img/icon.png",
    "default_popup": "popup.html",
    "default_title": "Yet Another Jenkins Notifier"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/services.js",
      "js/background.js",
      "js/ga.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "<all_urls>",
    "storage",
    "notifications"
  ]
}