Twitch No Unfollow

Twitch No Unfollow

Hide the unfollow button for Twitch streamers you follow.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch No Unfollow",
  "version": "1.1.0",
  "description": "Hide the unfollow button for Twitch streamers you follow.",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "src/channel.js"
      ],
      "matches": [
        "*://www.twitch.tv/*"
      ]
    }
  ],
  "action": {
    "default_popup": "src/views/options.html",
    "default_icon": "assets/icons/icon-128.png"
  },
  "icons": {
    "128": "assets/icons/icon-128.png"
  }
}