Jira CSV exporter

Exports jira csv file with own column separator

What is Jira CSV exporter?

Jira CSV exporter is a Chrome extension developed by Johan B, and its main feature is "Exports jira csv file with own column separator".

Extension Screenshots

screenshot

Download Jira CSV exporter Extension CRX File

Download Jira CSV exporter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Make it possible to export jira csv with ";" (or another) char as separator
It also turns "." to "," in choosen columns, for example Story Points                    

Extension Basic Information

Name Jira CSV exporter Jira CSV exporter
ID bmalhfmkgocjmkeihgjpodlkifpepjbl
Official URL https://chromewebstore.google.com/detail/jira-csv-exporter/bmalhfmkgocjmkeihgjpodlkifpepjbl
Description Exports jira csv file with own column separator
File Size 51.31 KB
Installation Count 126
Current Version 1.1
Last Updated 2017-04-03
Publish Date 2017-04-03
Rating 5.00/5 Total 1 Ratings
Developer Johan B
Payment Type free
Extension Website https://github.com/blommish/chrome-jira-exporter
Help Page URL https://github.com/blommish/chrome-jira-exporter
Supported Languages en-US
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"
    ]
}