InstaNote: Download and Save Video for IG

InstaNote: Download and Save Video for IG

Download videos, reels, and photos for Ins. Summary with ChatGPT from OpenAI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.8.4",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "downloads",
    "storage",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "https://*.openai.com/*"
  ],
  "optional_host_permissions": [
    "https://denote.net/"
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "css": [
        "content-script/index.css"
      ],
      "matches": [
        "https://*.instagram.com/*",
        "https://*.openai.com/*"
      ],
      "js": [
        "content-script/index.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "content-script/OpenAiCopy.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "images/*",
        "content-script/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}