Hide Instagram Explore & Reels

Hide Instagram Explore & Reels

Simple extension that hides the 'Explore' and 'Reels' buttons on the Instagram webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hide Instagram Explore & Reels",
  "version": "0.1.1",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "src/ig-hide.js"
      ]
    }
  ],
  "description": "Simple extension that hides the 'Explore' and 'Reels' buttons on the Instagram webpage.",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}