Game 2048

Game 2048

2048 game

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Game 2048",
  "short_name": "Game 2048",
  "description": "2048 game",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "/icons/action.png",
    "default_popup": "/popup/popup.html",
    "default_title": "Game!"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "source/js/jquery.min.1.2.6.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "*://*/*",
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "<all_urls>"
  ],
  "version": "2.1.2",
  "update_url": "https://clients2.google.com/service/update2/crx"
}