2048 cheat

2048 cheat

Click on extension to activate 2048 cheat!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "2048 cheat",
  "action": {
    "default_icon": "icon.png"
  },
  "manifest_version": 3,
  "version": "1.1",
  "description": "Click on extension to activate 2048 cheat!",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://play2048.co/"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}