Examine source code of IG Follower Export tool

Inspect and view changes in IG Follower Export tool source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "IG Follower Export tool",
  "description": "Export IG followers & followings in CSV Excel formats within a few clicks.",
  "version": "1.8.4",
  "manifest_version": 3,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_title": "IG Follower Export tool",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://i.instagram.com/*",
    "https://www.instagram.com/*",
    "https://*.cdninstagram.com/*",
    "https://*.fbcdn.net/*",
    "https://hypercavs.com/"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}