JIRA Template Injector

JIRA Template Injector

The description field of new JIRA issues will automatically be populated with a template relevant to the issue type

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JIRA Template Injector",
  "author": "Redbrick",
  "short_name": "JTI",
  "version": "1.2.5",
  "description": "The description field of new JIRA issues will automatically be populated with a template relevant to the issue type",
  "icons": {
    "16": "images/JTI-16.png",
    "48": "images/JTI-48.png",
    "64": "images/JTI-64.png",
    "128": "images/JTI-128.png"
  },
  "browser_action": {
    "default_icon": {
      "40": "images/JTI-48.png",
      "48": "images/JTI-48.png",
      "64": "images/JTI-64.png",
      "128": "images/JTI-128.png"
    },
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "lib/jquery/jquery-2.2.3.js",
      "js/utils.js",
      "jti_background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery/jquery-2.2.3.js",
        "js/utils.js",
        "jti_content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "sandbox": {
    "pages": [
      "html/sandbox.html"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "*://*/*.json",
    "https://*.pingstatsnet.com/"
  ]
}