2048

2048

Play 2048 anytime. Join the numbers and get to the 2048 tile!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "2048",
  "description": "Play 2048 anytime. Join the numbers and get to the 2048 tile!",
  "version": "25",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "background"
  ],
  "page_action": {
    "default_icon": "images/2048-icon.png",
    "default_popup": "game/index.html"
  },
  "web_accessible_resources": [
    "_generated_background_page.html"
  ],
  "icons": {
    "16": "images/2048-icon.png",
    "48": "images/2048-icon.png",
    "128": "images/2048-icon.png"
  }
}