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" ] } |