Maf Eqn

Maf Eqn

A fast, shortcut based equation editor with realtime preview and cymath, WeBWorK and Google Forms support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Maf Eqn",
  "short_name": "maf eqn",
  "version": "0.0.0.1",
  "manifest_version": 2,
  "description": "A fast, shortcut based equation editor with realtime preview and cymath, WeBWorK and Google Forms support.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "vendor/jquery-3.3.1.min.js",
        "vendor/jqmath-etc-0.4.6.min.js",
        "equation.js",
        "cymath.js"
      ],
      "css": [
        "vendor/jqmath-0.4.3.css",
        "cymath.css"
      ],
      "matches": [
        "http://www.cymath.com/answer*",
        "https://www.cymath.com/answer*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "tabs",
    "webNavigation",
    "http://docs.google.com/*",
    "https://docs.google.com/*",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "icon.png"
  ]
}