Examine source code of Doodle Games

Inspect and view changes in Doodle Games 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": "Doodle Games",
  "version": "1.6",
  "description": "Doodle games are fun, based on events. Play funny Doodle games in browser.",
  "icons": {
    "128": "icon/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icon/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/document_start.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/sw.js"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "permissions": [
    "alarms",
    "storage",
    "declarativeNetRequest"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/polyf.*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}