Jira CSV exporter
Exports jira csv file with own column separator
Cos'è Jira CSV exporter?
Jira CSV exporter è un'estensione di Chrome sviluppata da Johan B, e la sua funzione principale è "Exports jira csv file with own column separator".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jira CSV exporter
Scarica i file di estensione Jira CSV exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Make it possible to export jira csv with ";" (or another) char as separator
It also turns "." to "," in choosen columns, for example Story Points Informazioni di Base sull'Estensione
| Nome | |
| ID | bmalhfmkgocjmkeihgjpodlkifpepjbl |
| URL Ufficiale | https://chromewebstore.google.com/detail/jira-csv-exporter/bmalhfmkgocjmkeihgjpodlkifpepjbl |
| Descrizione | Exports jira csv file with own column separator |
| Dimensione del File | 51.31 KB |
| Conteggio Installazioni | 126 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2017-04-03 |
| Data di Pubblicazione | 2017-04-03 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Johan B |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/blommish/chrome-jira-exporter |
| URL della Pagina di Aiuto | https://github.com/blommish/chrome-jira-exporter |
| Lingue Supportate | 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"
]
} | |