JiraLink

JiraLink

Copy a Jira link with the Ticket Number and Title a HTML, ready to be pasted into Outlook or Websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JiraLink",
  "version": "0.2",
  "author": "Patrick Wittke",
  "description": "Copy a Jira link with the Ticket Number and Title a HTML, ready to be pasted into Outlook or Websites.",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Copy Jira Link",
    "default_icon": "img/icon16.png"
  },
  "permissions": [
    "activeTab",
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  }
}