Speedy Car

An endless 2D car doge game!
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": "Speedy Car",
  "version": "1.4",
  "description": "An endless 2D car doge game!",
  "icons": {
    "128": "Logo.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "Logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "styles.css",
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "browser_action": {
    "default_popup": "index.html"
  }
}