Shopee Reviews Extractor

Shopee Reviews Extractor

Scrape and export Shopee reviews in CSV, JSON, or XLSX formats. AI summaries highlight product pros, cons, and actionable insights.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "host_permissions": [
    "*://shopeereviewsextractor.extensionsbox.com/*",
    "*://*.shopee.sg/*",
    "*://*.shopee.co.id/*",
    "*://*.shopee.tw/*",
    "*://*.shopee.co.th/*",
    "*://*.shopee.com.my/*",
    "*://*.shopee.vn/*",
    "*://*.shopee.ph/*",
    "*://*.shopee.com.br/*",
    "*://*.shopee.com.mx/*",
    "*://*.shopee.com.co/*",
    "*://*.shopee.cl/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.shopee.sg/*",
        "*://*.shopee.co.id/*",
        "*://*.shopee.tw/*",
        "*://*.shopee.co.th/*",
        "*://*.shopee.com.my/*",
        "*://*.shopee.vn/*",
        "*://*.shopee.ph/*",
        "*://*.shopee.com.br/*",
        "*://*.shopee.com.mx/*",
        "*://*.shopee.com.co/*",
        "*://*.shopee.cl/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgcMA1HOCAFCH5gufkJZ8KZd+0qMUO41nxduvJJ7/NL0uWTmJ+NlB6psTfTVkVMbe4yfdLvgTK5CIaEpYVZRoXiFI3CsXx90YhjCqYYO0uW/2skVo05zYIGP0HceVWYIKZ+hkaWMvwrbLQRlMxvOcMKgpswdj1lxDDU7ZKbmXs5mwEMy2+yyfaORPJk2QZjTXfWrMH3t4kSVzroR+UoHITxGZ8xWgq1cCQUFHePyXBh/Bcmzk5xMDiO5DC8uXWraZbHeh+ddqZ0NgZPMiUO5QlHovYE9I+4fdoP7qRTj5cCdNCeVkG72vd25kGPsoIL/cj65QEN1qj3pz+mkMw3PN2QIDAQAB",
  "oauth2": {
    "client_id": "448047755324-js1rveok7dfd63ilp76qttm4ilmm4oim.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "libs/*",
        "injected.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}