JIRA extention

JIRA extention

Additional kanban board filter and HTML export.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Additional kanban board filter and HTML export.",
  "manifest_version": 2,
  "name": "JIRA extention",
  "version": "2.2",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*/*/RapidBoard.jspa*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://*/*/RapidBoard.jspa*"
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "1281.png"
  }
}