CMG Hacks

CMG Hacks

Adds things to cool math games to make it better! Click the icon to learn more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CMG Hacks",
  "description": "Adds things to cool math games to make it better! Click the icon to learn more!",
  "version": "3.1",
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "http://www.coolmathgames.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.coolmathgames.com/0-*",
        "*://coolmathgames.com/0-*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon_16x16.png",
    "32": "icons/icon_32x32.png",
    "128": "icons/icon_128x128.png"
  },
  "action": {
    "default_icon": "icons/icon_16x16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  }
}