JIRAFier

JIRAFier

Get automagically notfied of changes in JIRAs that are important to you!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JIRAFier",
  "version": "0.0.0.8",
  "manifest_version": 2,
  "description": "Get automagically notfied of changes in JIRAs that are important to you!",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "80": "icons/icon80.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "JIRAFier",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/bootstrap/dist/js/bootstrap.min.js",
        "src/inject/content.js"
      ],
      "css": [
        "bower_components/bootstrap/dist/css/bootstrap.min.css"
      ],
      "matches": [
        "http://*/browse/*",
        "https://*/browse/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "bower_components/jquery/dist/jquery.min.js",
      "src/inject/background.js"
    ]
  },
  "permissions": [
    "alarms",
    "storage",
    "notifications",
    "<all_urls>"
  ]
}