2048 Game

2048 Game

Move the tiles and if two tiles have the same number, they merge into one

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "bgr.html"
  },
  "browser_action": {
    "default_icon": "icon/48.png",
    "default_title": "Launch game"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "Move the tiles and if two tiles have the same number, they merge into one",
  "icons": {
    "16": "icon/64.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "manifest_version": 2,
  "name": "2048 Game",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "Funny Game",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0.2",
  "web_accessible_resources": [
    "game/*.html",
    "game/*.ico",
    "game/js/*.js",
    "game/meta/*.png",
    "game/style/*.css",
    "game/style/*.scss",
    "game/style/fonts/*.css",
    "game/style/fonts/*.eot",
    "game/style/fonts/*.svg",
    "game/style/fonts/*.woff"
  ]
}