Examine source code of Oh, my Dots! Game Creator

Inspect and view changes in Oh, my Dots! Game Creator 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
{
  "manifest_version": 3,
  "name": "Oh, my Dots! Game Creator",
  "description": "Create a connect the dots game or picture maze game from any picture in your browser.",
  "version": "1.0",
  "icons": {
    "16": "omd-icon-16.png",
    "64": "omd-icon.png"
  },
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "background": {
    "service_worker": "assets/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.ohmydots.com/*"
      ],
      "js": [
        "assets/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}