Kanban me JIRA

Kanban me JIRA

Display JIRA filters in the style of a Kanban board

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Kanban me JIRA",
  "version": "1.22.0",
  "manifest_version": 2,
  "description": "Display JIRA filters in the style of a Kanban board",
  "icons": {
    "16": "lib/i/notes.png",
    "32": "lib/i/kanban.png",
    "48": "lib/i/kanban.png",
    "128": "lib/i/kanban.png"
  },
  "browser_action": {
    "default_icon": "lib/i/notes-full-01.png",
    "default_title": "Kanban me JIRA",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "lib/js/constants.js",
      "lib/js/vendor/underscore.js",
      "lib/js/vendor/zepto.js",
      "lib/js/vendor/can.js",
      "lib/js/background.js",
      "lib/js/kmj.xmltojson.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "background",
    "notifications"
  ]
}