Among Us Discord Overlay HK edition

Adding Among us tools to the Discord Streamkit Overlay.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.0",
  "action": {
    "default_icon": {
      "16": "images/icon.png",
      "48": "images/icon.png",
      "128": "images/icon.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://streamkit.discord.com/overlay/voice/*"
      ],
      "css": [
        "css/lib/spectrum.min.css"
      ],
      "js": [
        "js/lib/jquery-3.2.1.min.js",
        "js/lib/jquery-ui.min.js",
        "js/lib/spectrum.min.js",
        "js/lib/fabric.min.js",
        "js/content.js",
        "js/paint.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}