Download Video and Audio. FastReels for Insta

Download Reels and Video from Instagram. Saves any Instagram Video or Reel. Downloading soundtrack of any Instagram Reel.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.2",
  "background": {
    "service_worker": "/js/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "js": [
        "js/app.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "downloads",
    "cookies",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "icons": {
    "128": "/icons/128.png"
  },
  "action": {
    "default_icon": "/icons/128.png",
    "default_title": "__MSG_name__"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icons/*"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ]
}