Math Break: YouTube Math Fun for Kids

Math Break: YouTube Math Fun for Kids

Boost math skills during YouTube time! Math Break pauses videos, presenting kids with math problems to solve.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Math Break: YouTube Math Fun for Kids",
  "version": "1.2",
  "description": "Boost math skills during YouTube time! Math Break pauses videos, presenting kids with math problems to solve.",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icon48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "icons": {
    "48": "icon48.png"
  }
}