Examine source code of 2048 - The Game

Inspect and view changes in 2048 - The Game 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",
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ],
      "persistent": true
    }
  },
  "offline_enabled": true,
  "author": "Fork of work created by Gabriele Cirulli. Based on 1024 by Veewo Studio and conceptually similar to Threes by Asher Vollmer. http://git.io/2048",
  "description": "2048 - The Game runs offline and EVERYWHERE you want. WARNING: ADDICTIVE :-)",
  "icons": {
    "16": "2048-16.png",
    "128": "2048-128.png"
  },
  "name": "2048 - The Game",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "storage",
    "fileSystem",
    "unlimitedStorage",
    "alarms",
    "webview",
    "identity",
    "idle",
    "storage",
    "unlimitedStorage",
    "notifications"
  ],
  "version": "1.0.0.6"
}