FollowFox - IG Follower Export Tool (Email)

FollowFox - IG Follower Export Tool (Email)

IGFollow extract Instagram follower and following including Emails, Export to Excel/CSV/JSON with one click.

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_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.1.3",
  "homepage_url": "https://igfollowexporter.extensionsfox.com/",
  "action": {
    "default_icon": "./assets/icon-512.png",
    "default_popup": "./dist/popup/index.html"
  },
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "permissions": [
    "cookies",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.instagram.com/*"
  ],
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ],
      "css": [
        "./dist/contentScripts/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}