IG Downloader

IG Downloader

Downloads videos and images from ig

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "IG Downloader",
  "description": "Downloads videos and images from ig",
  "version": "1.1.3",
  "author": "Matthew Lam",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "posts.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "stories.js"
      ],
      "run_at": "document_end"
    }
  ]
}