Examine source code of SpeechBuddy

Inspect and view changes in SpeechBuddy source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SpeechBuddy",
  "version": "1.0.3",
  "description": "A Chrome extension that makes speech therapy fun by tailoring questions to the media your child enjoys!",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "assets/logo_16.png",
    "32": "assets/logo_32.png",
    "64": "assets/logo_64.png",
    "128": "assets/logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript/content.js",
        "contentScript/scrapper.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.js",
        "*.css",
        "scripts/*.js",
        "assets/logo_128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "script-src": "'self'",
    "object-src": "'self'",
    "default-src": "'self'",
    "connect-src": "'self'"
  }
}