Description & Comment Templates for Jira

Description & Comment Templates for Jira

This extension allows you to create and use templates for issue descriptions and comments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "TecnoFor Solutions",
  "description": "This extension allows you to create and use templates for issue descriptions and comments.",
  "name": "Description & Comment Templates for Jira",
  "version": "9.1.0",
  "content_scripts": [
    {
      "js": [
        "src/entries/contentScript/primary/main.js"
      ],
      "matches": [
        "https://*.atlassian.net/*",
        "https://*.jira.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "permissions": [],
  "action": {
    "default_icon": "icons/icon.png",
    "default_popup": "src/entries/popup/index.html"
  },
  "host_permissions": [
    "https://*.atlassian.net/*",
    "https://*.jira.com/*"
  ],
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "assets/src/entries/contentScript/primary/main-d631e59c.js",
        "assets/template-constants-b501f1a6.js",
        "assets/_commonjsHelpers-23102255.js",
        "assets/browser-polyfill-a2c294e6.js",
        "assets/main-6f426931.css",
        "assets/template-constants-8bc675a4.css"
      ],
      "matches": [
        "https://*.atlassian.net/*",
        "https://*.jira.com/*"
      ],
      "use_dynamic_url": true
    }
  ]
}