Jira CSV exporter
Exports jira csv file with own column separator
Qu'est-ce que Jira CSV exporter ?
Jira CSV exporter est une extension Chrome développée par Johan B, et sa fonction principale est "Exports jira csv file with own column separator".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jira CSV exporter
Téléchargez les fichiers d'extension Jira CSV exporter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Make it possible to export jira csv with ";" (or another) char as separator It also turns "." to "," in choosen columns, for example Story Points
Informations de Base sur l'Extension
Nom | Jira CSV exporter |
ID | bmalhfmkgocjmkeihgjpodlkifpepjbl |
URL Officiel | https://chromewebstore.google.com/detail/jira-csv-exporter/bmalhfmkgocjmkeihgjpodlkifpepjbl |
Description | Exports jira csv file with own column separator |
Taille du Fichier | 51.31 KB |
Nombre d'Installations | 126 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-04-03 |
Date de Publication | 2017-04-03 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Johan B |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/blommish/chrome-jira-exporter |
URL de la Page d'Aide | https://github.com/blommish/chrome-jira-exporter |
Langues Prises en Charge | 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" ] } |