JIRA - CSV to Table Converter

- Save your SQL query results in .csv format and convert it to a JIRA table.

Τι είναι το JIRA - CSV to Table Converter;

Το JIRA - CSV to Table Converter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vitor Medeiros, και η κύρια λειτουργία του είναι "- Save your SQL query results in .csv format and convert it to a JIRA table.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης JIRA - CSV to Table Converter

Λήψη αρχείων επέκτασης JIRA - CSV to Table Converter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        You worked on a ticket to save or update something on the Database and now, before moving to Ready-for-test, you want to post the expected results in the comments section so your QA knows exactly what to look for? 
Your Options Are:
- Post a screenshot of the query result! But have a hard time choosing just the minimum necessary tables so it can all fit in the screen size.
- Post the query and let the QA do all the work! Thats cool when you don't have to check multiple tables to get into a conclusion.

Now you can simply transform the query into a JIRA table, no matter how many tables or rows. It supports JSON formatting columns and it is 100% free :)

Simply Export the Query result as CSV using whatever DB-access tool you have, paste on the extension popup, select the separator, which can be a single comma or semicolon depending on your region, and paste the result on the Text View of your JIRA ticket!

PS: Newest Jira Cloud Issue viewer does not support Text View anymore, this extension works for JIRA Server or Jira Cloud by choosing the old issue viewer.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα JIRA - CSV to Table Converter JIRA - CSV to Table Converter
ID deaaffgkajhamgamamnekpkepehpfbmh
Επίσημο URL https://chrome.google.com/webstore/detail/jira-csv-to-table-convert/deaaffgkajhamgamamnekpkepehpfbmh
Περιγραφή - Save your SQL query results in .csv format and convert it to a JIRA table.
Μέγεθος Αρχείου 39.27 KB
Αριθμός Εγκαταστάσεων 68
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2020-09-01
Ημερομηνία Δημοσίευσης 2020-08-31
Προγραμματιστής Vitor Medeiros
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JIRA - CSV to Table Converter",
    "version": "0.0.2",
    "description": "- Save your SQL query results in .csv format and convert it to a JIRA table.",
    "permissions": [
        "system.display",
        "activeTab",
        "storage",
        "clipboardWrite",
        "declarativeContent"
    ],
    "options_page": "popupsql.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jira.squaretrade.com\/browse\/*"
            ],
            "js": [
                "jquery.min.js",
                "addContentComment.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popupsql.html",
        "default_icon": {
            "16": "images\/squel.png",
            "32": "images\/squel.png",
            "48": "images\/squel.png",
            "128": "images\/sql128.png"
        }
    },
    "icons": {
        "16": "images\/squel.png",
        "32": "images\/squel.png",
        "48": "images\/squel.png",
        "128": "images\/sql128.png"
    },
    "manifest_version": 2
}