Equatio - Math made digital

Equatio - Math made digital

Easily create mathematical equations, formulas and quizzes. Intuitively type or handwrite, with no tricky math code to learn.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "short_name": "Equatio",
  "default_locale": "en_US",
  "version": "55.0.0",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "content/assets/equatioicon16.png",
    "32": "content/assets/equatioicon32.png",
    "48": "content/assets/equatioicon48.png",
    "128": "content/assets/equatioicon128.png"
  },
  "browser_action": {
    "default_title": "Equatio"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "background": {
    "scripts": [
      "background/bundle.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.firebaseio.com https://*.firebasedatabase.app; object-src 'self'",
  "web_accessible_resources": [
    "content/*",
    "mathjaxFrame/*",
    "mmlWorker/*",
    "annotate-canvas.js",
    "desmos/*"
  ],
  "sandbox": {
    "pages": [
      "mmlWorker/index.html",
      "desmos/calculator.html",
      "desmos/graph.html"
    ],
    "content_security_policy": "sandbox allow-scripts; script-src 'self' 'unsafe-eval'"
  },
  "oauth2": {
    "client_id": "1012020947112-ej46u2phchai2guaj81fk9lb7pp2mm3q.apps.googleusercontent.com",
    "scopes": [
      "email",
      "profile",
      "https://www.googleapis.com/auth/documents",
      "https://www.googleapis.com/auth/presentations",
      "https://www.googleapis.com/auth/spreadsheets"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+Shift+Q",
        "mac": "Alt+Shift+Q",
        "chromeos": "Alt+Shift+Q",
        "linux": "Alt+Shift+Q"
      }
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "alarms",
    "storage",
    "identity",
    "identity.email",
    "gcm",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "content/chromeBundle.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "https://*.sharepoint.com/*",
        "https://onedrive.live.com/*",
        "https://*.officeapps.live.com/*"
      ],
      "js": [
        "content/officeBundle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://docs.google.com/forms/*",
        "https://docs.google.com/*/forms/*",
        "https://docs.google.com/*picker*"
      ],
      "js": [
        "content/formBundle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content/htmlEditorApiInjector.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "content/docsCanvas.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://pdf.dev.texthelp.com/*",
        "https://orbit.texthelp.com/*",
        "https://orbitnote-us.staging.texthelp.com/*",
        "https://orbitnote.staging.texthelp.com/*",
        "https://*.coursera.org/*",
        "https://*.dev-coursera.org/*"
      ],
      "js": [
        "content/equatioApi.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "https://equatio.texthelp.com/*",
        "https://equatio.dev.texthelp.com/*"
      ],
      "js": [
        "content/mathspaceBundle.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "incognito": "split",
  "externally_connectable": {
    "matches": [
      "https://equatio.texthelp.com/*"
    ]
  },
  "version_name": "55.0.0"
}