2048 AI

2048 AI

AI to complete the 2048 game. It can help you play the 2048 game and make a 2048 tile easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "run.js"
      ],
      "matches": [
        "http://gabrielecirulli.github.io/2048/",
        "https://gabrielecirulli.github.io/2048/",
        "https://play2048.co/",
        "http://play2048.co/"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgyrWv4fNaKpLLdlAyXvNhjSK09c8XlnwzkccjDkgUbKagJuARSaBPhxgW1IPFVokVA3HZdCK4wZrhEnuwmIxLzOFSJuUNrfAeNUhwcpa2Vw51PPLh2ofXGUG61u1o7jwsDdfCXgPMcRd+eosxznrbwcH0q97m/a+lPey3XHvREmtvvRpPKceMNZvjWsmmP/HyWEH+O3hXZVgBiN4LA44eIt6rPkNWcBOnUUsrdeqrZDNnrxmSwu8rXrJkp2iOZbpsJwJjJKm8TTr9rBvi/QZ/zs9LgXidohtOWNdKHSODC+Y/SWTfQdkYWBuahqGCpbinfHI/5slF7sCAZAuQrA65QIDAQAB",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "2048 AI"
  },
  "permissions": [
    "declarativeContent"
  ],
  "short_name": "__MSG_appName__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.9",
  "web_accessible_resources": [
    "ai.js"
  ]
}