Remove Reels

Remove Reels

Remove Facebook reels from your time line, remove distracting irrelevant video content that you've not originally subscribed to

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Remove Reels",
  "version": "1.0.1",
  "description": "Remove Facebook reels from your time line, remove distracting irrelevant video content that you've not originally subscribed to",
  "action": {
    "default_icon": "assets/icon.png",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}