Examine source code of 2048

Inspect and view changes in 2048 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",
  "name": "2048",
  "description": "Join the numbers and get to the 2048 tile! Careful: this game is extremely addictive!",
  "author": "Created by Gabriele Cirulli. Based on 1024 by Veewo Studio and conceptually similar to Threes by Asher Vollmer. http://git.io/2048",
  "version": "1.0",
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "offline_enabled": true,
  "icons": {
    "16": "2048-16.png",
    "128": "2048-128.png"
  },
  "permissions": [
    "storage"
  ]
}