Jira Improved

Jira Improved

Improved Jira Agile boards!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "2.0.8",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Jira Improved",
    "default_popup": "views/popup.html"
  },
  "options_page": "views/options.html",
  "omnibox": {
    "keyword": "Jira Improved"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/secure/RapidBoard.jspa*",
        "https://*/jira/secure/RapidBoard.jspa*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "css/*.css",
    "js/dist/*.js"
  ]
}