Antigram - Explore & Reels Blocker

Antigram - Explore & Reels Blocker

Browser extension to fight back Instagram's addictive features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Antigram - Explore & Reels Blocker",
  "description": "Browser extension to fight back Instagram's addictive features.",
  "author": "aymyo",
  "version": "2.0.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js",
        "modules/main.js",
        "modules/lib.js"
      ],
      "matches": [
        "*://www.instagram.com/*"
      ]
    }
  ],
  "options_ui": {
    "page": "popup/popup.html",
    "open_in_tab": true
  },
  "action": {
    "default_title": "Antigram Options",
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "public/ag16.png",
      "32": "public/ag32.png",
      "48": "public/ag48.png",
      "128": "public/ag128.png"
    }
  },
  "icons": {
    "16": "public/ag16.png",
    "32": "public/ag32.png",
    "48": "public/ag48.png",
    "128": "public/ag128.png"
  }
}