Examine source code of IG Email Extractor - Scraper for Instagram

Inspect and view changes in IG Email Extractor - Scraper for Instagram 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
{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "homepage_url": "https://igemailextractor.echobot.dev",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "cookies",
    "storage",
    "identity",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.instagram.com/*",
    "*://*.echobot.dev/*"
  ],
  "oauth2": {
    "client_id": "822420326057-m93k691553m6m1lj3l5jn2r40qjcg7rs.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "*://*.instagram.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "js": [
        "auth.js"
      ],
      "matches": [
        "*://*.echobot.dev/auth/success/igemailextractor*"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "2.4.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}