Ticket Templates for JIRA

Ticket Templates for JIRA

This addon inserts templates easily into textfields. It supports autofill, quickfill, sharing and many more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Steven Herrmann",
  "name": "__MSG_general_app_name__",
  "default_locale": "en",
  "version": "1.9.0",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "description": "__MSG_general_app_description__",
  "homepage_url": "https://gitlab.com/browseraddons/ticket-templates-for-jira/",
  "short_name": "__MSG_general_app_short_name__",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "applications": {
    "gecko": {
      "id": "{f3f4e346-add5-4a95-abe5-ca6bba2ae171}"
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "32": "assets/icons/icon32.png",
      "48": "assets/icons/icon48.png",
      "128": "assets/icons/icon128.png"
    },
    "default_title": "__MSG_browser_ui_title_onhover__",
    "browser_style": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://steven-herrmann.atlassian.net; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "assets/icons/icon16.png"
  ]
}