Math Tools

Math Tools

Super calculator with ability to graph, type or handwrite equations. Equation cropping to input equations into docs & forms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Math Tools",
  "version": "2.1",
  "manifest_version": 2,
  "description": "Super calculator with ability to graph, type or handwrite equations. Equation cropping to input equations into docs & forms.",
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icons/logo.png",
    "default_title": "Math Tools"
  },
  "permissions": [
    "http://www.jaymurphy.org/Math_tool/equation_writer/*",
    "http://www.jaymurphy.org/Math_tool/draw_equation/*",
    "activeTab",
    "storage"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.jaymurphy.org/Math_tool/equation_writer/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/edit1.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://www.jaymurphy.org/Math_tool/draw_equation/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/edit2.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "math/equation_writer/index.html",
    "math/graphing_calculator/index.html",
    "cropper/index.html",
    "draw equation/index.html"
  ],
  "content_security_policy": "script-src 'self'  'unsafe-eval'  "
}