Twitch Hide Carousel

Twitchフロントページのカルーセルを非表示にします。
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": "Twitch Hide Carousel",
  "version": "1.0.0",
  "description": "Twitchフロントページのカルーセルを非表示にします。",
  "icons": {
    "16": "images/size16.png",
    "48": "images/size48.png",
    "128": "images/size128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://www.twitch.tv/*"
  ]
}