CardJIRA

CardJIRA

CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CardJIRA",
  "short_name": "CardJIRA",
  "version": "1.5.14.0",
  "version_name": "v1.5.14.0",
  "description": "CardJIRA lets you print cards from issues on your agile board, in saved JQL filters or single issues. #ScratchYourOwnItch",
  "author": "Tomislav Jerkovic",
  "options_ui": {
    "page": "settings/settings.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": {
      "40": "icon.png",
      "128": "icon.png"
    },
    "default_title": "CardJIRA - create cards now!",
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "minimum_chrome_version": "49.0.2623.75",
  "permissions": [
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "cards.html",
    "img/unicorn.png"
  ]
}