InsFo - IG follower export & analysis tool

InsFo - IG follower export & analysis tool

Export Instagram Follower/Following/Comment/Tag/Location and Analyze.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "InsFo - IG follower export & analysis tool",
  "version": "4.7.4",
  "description": "Export Instagram Follower/Following/Comment/Tag/Location and Analyze.",
  "action": {
    "default_icon": "./assets/icon-128.png",
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "16": "./assets/icon-16.png",
    "48": "./assets/icon-48.png",
    "128": "./assets/icon-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "cookies",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.instagram.com/*",
    "*://*.listmore.info/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*?ext=F&cmd=export&uuid=*"
      ],
      "js": [
        "dist/exportPanel/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/exportPanel/style.css",
        "assets/*"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}