JIRA - CSV to Table Converter

JIRA - CSV to Table Converter

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

Merlin
Additional files are visible only to premium users

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
}