JIRALyzer for JIRA

JIRALyzer for JIRA

Atlassian JIRA on steroids!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JIRALyzer for JIRA",
  "version": "0.0.2.1",
  "manifest_version": 2,
  "description": "Atlassian JIRA on steroids!",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "off.png",
    "default_title": "JIRALyzer",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "content.js"
      ],
      "css": [
        "content.css",
        "bower_components/hint.css/hint.min.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "http://*//secure/RapidBoard*",
    "https://*//secure/RapidBoard*"
  ],
  "web_accessible_resources": [
    "on.png",
    "off.png"
  ]
}