GitHub Math Display

GitHub Math Display

Displays LaTeX math equations in GitHub markdown previews.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub Math Display",
  "version": "0.3.7",
  "description": "Displays LaTeX math equations in GitHub markdown previews.",
  "icons": {
    "128": "assets/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index-b8a067f0.js"
      ],
      "matches": [
        "https://github.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "assets/katex.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "assets/background-c76225da.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "index.js",
    "assets/fonts/*",
    "constants-d1d9f3fd.js"
  ],
  "permissions": [
    "webNavigation",
    "*://*.github.com/*"
  ]
}