HaxBall Emoji Hotkeys

HaxBall Emoji Hotkeys

Make hotkeys with cool avatar emojis in HaxBall! Clap 👏 when someone made a great shot, wave a hand ✋ if you need a pass and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HaxBall Emoji Hotkeys",
  "version": "0.2.4",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.haxball.com/play*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}