Jira CSV exporter
Exports jira csv file with own column separator
什么是Jira CSV exporter?
Jira CSV exporter是由Johan B开发的Chrome扩展程序,该扩展的主要功能是“Exports jira csv file with own column separator”。
扩展截图
下载Jira CSV exporter扩展crx文件
下载Jira CSV exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Make it possible to export jira csv with ";" (or another) char as separator It also turns "." to "," in choosen columns, for example Story Points
扩展基本信息
名称 | Jira CSV exporter |
ID | bmalhfmkgocjmkeihgjpodlkifpepjbl |
官方URL | https://chromewebstore.google.com/detail/jira-csv-exporter/bmalhfmkgocjmkeihgjpodlkifpepjbl |
简介 | Exports jira csv file with own column separator |
文件大小 | 51.31 KB |
安装次数 | 126 |
当前版本 | 1.1 |
更新时间 | 2017-04-03 |
上架时间 | 2017-04-03 |
评分 | 5.00/5 共1次评分 |
开发者 | Johan B |
付费类型 | free |
扩展官网 | https://github.com/blommish/chrome-jira-exporter |
帮助页面URL | https://github.com/blommish/chrome-jira-exporter |
支持的语言 | 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" ] } |