Instalamb - control what Instagram feeds you!

Instalamb - control what Instagram feeds you!

Customise Instagram to be the way you want it.

Merlin
Additional files are visible only to premium users

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.6",
  "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-nav.js",
        "modify-metrics.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]"
    }
  }
}