Live Recorder for Instagram aka MasterReco

Live Recorder for Instagram aka MasterReco

Extension for Recording and Downloading Instagram Lives. Now you can record and save any Live you want and watch it later anytime.

Merlin
Additional files are visible only to premium users

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.5",
  "icons": {
    "128": "i/icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "i/icon_16.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "host_permissions": [
    "*://*.instagram.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "tabCapture",
    "storage",
    "offscreen",
    "downloads"
  ]
}