Fextralife Fix

Fextralife Fix

This little extension removes the twitch embed from the fextralife website. If you want to use that site for some reason.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Fextralife Fix",
  "version": "1.0",
  "description": "This little extension removes the twitch embed from the fextralife website. If you want to use that site for some reason.",
  "content_scripts": [
    {
      "matches": [
        "https://*.fextralife.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon-16.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  }
}