Instalamb - control what Instagram feeds you!

Customise Instagram to be the way you want it.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Instalamb - control what Instagram feeds you!",
  "description": "Customise your Instagram experience to remove clutter and distractions. Hide unwanted stories, banners, threads and links.",
  "version": "0.8",
  "icons": {
    "48": "images/lamb-lavender-48.png",
    "64": "images/lamb-lavender-64.png",
    "128": "images/lamb-lavender-256.png",
    "256": "images/lamb-lavender-256.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "main.js",
        "modify-home.js",
        "modify-explore.js",
        "modify-nav.js",
        "modify-metrics.js",
        "modify-all.js",
        "dom-utils.js"
      ]
    }
  ],
  "action": {
    "default_title": "Instalamb",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "host_permissions": [
    "https://www.instagram.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}