FMath 'HTML + MathML' Solution

HTML + MATHML + this extension. Draw/Convert MathML into an image. More info, questions or bug report on www.fmath.info
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": "FMath 'HTML + MathML' Solution",
  "description": "HTML + MATHML + this extension. Draw/Convert MathML into an image. More info, questions or bug report on www.fmath.info",
  "version": "2.0.2",
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "css": [
        "formula.css",
        "menu/basicContext.min.css",
        "menu/default.min.css"
      ],
      "js": [
        "fonts/fmathFormulaFonts.js",
        "fmathFormulaC.js",
        "menu/basicContext.min.js",
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "FMathEditor.png"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "fonts/*/*",
    "menu/*/*",
    "cursor/*"
  ],
  "manifest_version": 2
}