GitHub Jira Issue Linkifier

GitHub Jira Issue Linkifier

This extension automatically turns Pull-Request and Commit titles with Jira tags in them (like "ICU-1234") into clickable links on GitHub. No more copy and pasting! Note: You need to set the Jira Org/Subdomain name in the add-on options first.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "GitHub Jira Issue Linkifier",
  "short_name": "JiraLinkifer",
  "version": "1.0.6",
  "description": "Automatically turns text that contains Jira issues (like ICU-1234) into click-able links on GitHub.",
  "author": "Jeff Genovy",
  "homepage_url": "https://github.com/jefgen/github-jira-linkifier-webextension",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "background.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ]
}