Graspable Math Sidebar

Graspable Math Sidebar

Interact with mathematical expressions you find on Wikipedia or other webpages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Graspable Math Sidebar",
  "short_name": "GM Sidebar",
  "description": "Interact with mathematical expressions you find on Wikipedia or other webpages.",
  "version": "1.3.0",
  "homepage_url": "https://graspablemath.com",
  "manifest_version": 2,
  "author": "Erik Weitnauer",
  "browser_action": {
    "default_icon": "assets/micrologo.png"
  },
  "icons": {
    "128": "assets/gm-logo-128.png"
  },
  "background": {
    "scripts": [
      "inject.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "scripts/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/bootstrap/fonts/glyphicons-halflings-regular.woff2",
    "assets/gm-logo.png",
    "assets/fonts/kalam-regular.ttf",
    "assets/graspable-math/sidebar.html",
    "shared/content/help-pages/*"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "identity",
    "identity.email",
    "http://*/*",
    "https://*/*"
  ]
}