Jira issue template generator

Jira issue template generator

Pre populate Jira task description field with a template of your own.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Jira issue template generator",
  "version": "1.0.10",
  "description": "Pre populate Jira task description field with a template of your own.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "./css/app.css"
      ],
      "js": [
        "./js/jquery.min.js",
        "setupSession.js",
        "applyTemplate.js",
        "clearTemplate.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/favicon16x16.png",
      "32": "images/favicon32x32.png",
      "48": "images/favicon48x48.png",
      "64": "images/favicon64x64.png",
      "128": "images/favicon128x128.png"
    }
  },
  "icons": {
    "16": "images/favicon16x16.png",
    "32": "images/favicon32x32.png",
    "48": "images/favicon48x48.png",
    "64": "images/favicon64x64.png",
    "128": "images/favicon128x128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}