Examine source code of Jira Issue Opener

Inspect and view changes in Jira Issue 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",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "version": "1.5",
  "author": "webbutler",
  "homepage_url": "https://github.com/AButler/jira-issue-opener-extension",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "omnibox": {
    "keyword": "jira"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_title": "__MSG_extActionTitle__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/jira-16.png",
    "32": "images/jira-32.png",
    "48": "images/jira-48.png",
    "128": "images/jira-128.png"
  },
  "manifest_version": 3
}