Examine source code of Jira Snippet

Inspect and view changes in Jira Snippet 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 Snippet",
  "version": "2.3.1",
  "description": "Jira Snippet: Quick copy add-on for customizable issue data. Integrates with Jira Cloud on Chrome, Firefox, Edge.",
  "homepage_url": "https://github.com/daemonLibra/JiraIssueCopyData",
  "author": "https://github.com/daemonLibra",
  "icons": {
    "48": "icons/logo_48.png"
  },
  "action": {
    "default_icon": "icons/logo_32.png",
    "default_title": "Jira Snippet",
    "default_popup": "popup/info.html"
  },
  "background": {
    "service_worker": "scripts/contextMenu.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.atlassian.net/*",
        "*://*.atlassian.com/*"
      ],
      "js": [
        "scripts/storage-utils.js",
        "scripts/settings.js",
        "scripts/copybtn.js"
      ],
      "run_at": "document_start",
      "css": [
        "css/style.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ]
}