Examine source code of Supercars Puzzle

Inspect and view changes in Supercars Puzzle 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": 2,
  "name": "Supercars Puzzle",
  "version": "1.0",
  "description": "In this game, you are given some figures of some super cars and the picture is cut in many small parts.",
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": {
      "48": "images/puzzle-logo.png"
    },
    "default_title": "Open Game Popup",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "images/puzzle-logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e70cda35-a7c2-40bd-b9cf-599cc34508a3}"
    }
  }
}