2048 - Classic Games

2048 - Classic Games

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": "icon.png",
    "default_title": "2048"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://geoguessr.com/*"
      ],
      "css": [
        "css/geoguessr.css"
      ],
      "js": [
        "js/geoguessr.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://geoguessr.com/*",
        "*://fflashgames.com/*",
        "*://www.yiv.com/*",
        "*://html5.gamedistribution.com/*",
        "*://slither.io/*"
      ],
      "css": [
        "css/sidebar.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/gamesList.js",
        "js/sidebar.js"
      ]
    },
    {
      "all_frames": true,
      "matches": [
        "*://slither.io/*",
        "*://www.trex-game.skipser.com/*",
        "*://html5.gamedistribution.com/*",
        "*://www.free-play-mahjong.com/*"
      ],
      "js": [
        "js/resourcesCleaner.js"
      ],
      "css": [
        "css/resourcesCleaner.css"
      ]
    },
    {
      "all_frames": true,
      "matches": [
        "*://fflashgames.com/*"
      ],
      "js": [
        "js/neptunjs.js"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/content.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "img/*"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs"
  ],
  "version": "1.0.8"
}