2048 Game

2048 Game

Play 2048 Game Online. Play 2048 Game Offline. Join the numbers and get to the 2048 tile!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "logo.png",
    "default_title": "__MSG_name__",
    "default_popup": "2048.html"
  },
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "48": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "*"
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "name": "2048 Game",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3.5"
}