Cool Story - Download Tool for Instagram

Cool Story - Download Tool for Instagram

Download, Upload and Repost Instagram Stories from desktop with this new advanced toolkit.

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",
  "background": {
    "service_worker": "/js/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "/js/app.js"
      ],
      "css": [
        "/css/upload_ui.css"
      ]
    }
  ],
  "host_permissions": [
    "https://*.instagram.com/*"
  ],
  "permissions": [
    "webRequest",
    "storage",
    "downloads",
    "cookies"
  ],
  "icons": {
    "128": "/img/128.png"
  },
  "action": {
    "default_icon": "/img/128.png",
    "default_title": "__MSG_name__"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "https://*.instagram.com/*"
      ]
    }
  ]
}