Examine source code of Jira Ticket Link Generator

Inspect and view changes in Jira Ticket Link Generator source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jira Ticket Link Generator",
  "description": "Generates a nice looking link for Jira tickets containing ticket ID, description and link",
  "version": "1.2.1",
  "manifest_version": 3,
  "author": "Junhao Zhang",
  "permissions": [
    "scripting",
    "activeTab",
    "clipboardWrite"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/images/link_to_jira_48.png"
  },
  "commands": {
    "generate-link-for-single-ticket": {
      "suggested_key": {
        "default": "Alt+Q",
        "mac": "Alt+Q"
      },
      "description": "Generate link for a specific link from selected ticket on rapid board, selected ticket on search board, or ticket shown in ticket detail page."
    },
    "generate-link-for-all-tickets": {
      "suggested_key": {
        "default": "Alt+W",
        "mac": "Alt+W"
      },
      "description": "Generate link for all tickets shown up in Jira search result board."
    }
  },
  "icons": {
    "16": "/images/link_to_jira_16.png",
    "32": "/images/link_to_jira_32.png",
    "48": "/images/link_to_jira_48.png",
    "128": "/images/link_to_jira_128.png"
  }
}