Instagram Content Blocker

Instagram Content Blocker

Cover your Instagram feed, stories, or direct messages to reduce distractions and increase productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Instagram Content Blocker",
  "version": "1.0.0",
  "description": "Cover your Instagram feed, stories, or direct messages to reduce distractions and increase productivity",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://www.instagram.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icon.png"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/icon.png",
      "24": "assets/icon.png",
      "32": "assets/icon.png"
    },
    "default_title": "Instagram Content Blocker",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}