MathJax Plugin for Github

MathJax Plugin for Github

Renders Github equations with MathJax

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MathJax Plugin for Github",
  "description": "Renders Github equations with MathJax",
  "version": "0.2.4",
  "permissions": [
    "https://github.com/*",
    "https://gist.github.com/*"
  ],
  "web_accessible_resources": [
    "mathjax_config.js",
    "MathJax/*",
    "jquery-min-1.7.2.js",
    "dynamic_math.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "js": [
        "jquery-min-1.7.2.js",
        "jquery.include.pack-1.1.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}