FastSave for Instagram™ (reel, photo, story)

FastSave for Instagram™ (reel, photo, story)

Download Instagram videos, stories, and photos: full-size photos and videos in original and high quality.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.7.1",
  "icons": {
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "downloads",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "scripts/bg.js",
      "scripts/bgInstagram.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/index.js",
        "scripts/transInstagram.js",
        "scripts/content.js"
      ],
      "css": [
        "css/index.css"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "icons/64.png",
    "default_popup": "popup/popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'",
  "web_accessible_resources": [
    "icons/*"
  ]
}