Instagram Ad Blocker - hide sponsored ads

Instagram Ad Blocker - hide sponsored ads

Hide Instagram Ads. Keeping your Instagram feed free from sponsored distractions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Instagram Ad Blocker - hide sponsored ads",
  "version": "1.5",
  "description": "Hide Instagram Ads. Keeping your Instagram feed free from sponsored distractions.",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "images/icon.png",
      "64": "images/icon.png",
      "128": "images/icon.png"
    }
  },
  "icons": {
    "48": "images/icon.png",
    "64": "images/icon.png",
    "128": "images/icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "popup.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}