Examine source code of Jira Ticket Opener

Inspect and view changes in Jira Ticket Opener 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",
  "manifest_version": 3,
  "name": "Jira Ticket Opener",
  "version": "1.2",
  "description": "Open Jira tickets from selected text",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "action": {
    "default_icon": "jto-logo-48.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "jto-logo-48.png"
  }
}