InsExport - Get Instagram following list

InsExport - Get Instagram following list

A chrome extension made for people who want to export followers and following from Instagram into csv.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "InsExport - Get Instagram following list",
  "description": "A chrome extension made for people who want to export followers and following from Instagram into csv.",
  "version": "1.2.1",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://*.instagram.com/*"
  ],
  "action": {
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "content-script/main.js",
        "assets/js/googleAnalytics.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "assets/images/icon_16.png",
    "32": "assets/images/icon_32.png",
    "48": "assets/images/icon_48.png",
    "128": "assets/images/icon_128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}