Wikipedia with MathJax

Wikipedia with MathJax

Renders Wikipedia 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": "Wikipedia with MathJax",
  "version": "0.0.13",
  "icons": {
    "16": "wiki-mjax-16.png",
    "48": "wiki-mjax-48.png",
    "128": "wiki-mjax-128.png"
  },
  "description": "Renders Wikipedia equations with MathJax",
  "web_accessible_resources": [
    "texvc.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.wikipedia.org/*",
        "https://*.wikibooks.org/*",
        "http://*.wikiwand.com/*",
        "https://*.wikiwand.com/*"
      ],
      "js": [
        "jquery-1.12.4.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}