Jira CSV exporter

Jira CSV exporter

Exports jira csv file with own column separator

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Jira CSV exporter",
  "description": "Exports jira csv file with own column separator",
  "version": "1.1",
  "homepage_url": "https://github.com/blommish/chrome-jira-exporter",
  "content_scripts": [
    {
      "matches": [
        "*://*.atlassian.net/*",
        "*://*/jira*",
        "*://jira/*",
        "*://*.jira/*"
      ],
      "js": [
        "jira_exporter.js"
      ]
    }
  ],
  "options_page": "options.html",
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "storage"
  ]
}