Examine source code of LaTeX for Jira Cloud - Math Editor

Inspect and view changes in LaTeX for Jira Cloud - Math Editor 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": "LaTeX for Jira Cloud - Math Editor",
  "description": "This is the only add-on for writing Math content using LaTeX on JIRA Cloud.",
  "version": "2.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "css": [],
      "js": [
        "scripts/content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "node_modules/mathjax/es5/*",
        "scripts/*"
      ],
      "matches": [
        "https://*.atlassian.net/*"
      ]
    }
  ]
}