Save IG Live Story

Save IG Live Story

View and download Instagram Live Stories from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "Save IG Live Story",
  "description": "__MSG_extDesc__",
  "version": "1.3.7",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Save IG Live Story",
    "default_popup": "index.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.instagram.com/*",
    "*://*.fbcdn.net/*",
    "*://*.cdninstagram.com/*",
    "*://*.savelivestory.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/*",
    "css/*",
    "img/*",
    "html/*"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "128": "img/icon-128.png"
  },
  "incognito": "split"
}