Examine source code of MathML Companion

Inspect and view changes in MathML Companion 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
{
  "name": "MathML Companion",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "description": "A Chromium extension to copy MathML expressions with ease.",
  "author": "Elyasaf Elbaz",
  "permissions": [
    "contextMenus"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}