Trustpilot Reviews Extractor

Trustpilot Reviews Extractor

Extract Trustpilot reviews to gain valuable insights, identify trends, and enhance customer experience — no coding required!

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": [
    "*://trustpilotreviewsextractor.extensionsbox.com/*",
    "*://*.trustpilot.com/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trustpilot.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwUNhnayl+OnURgzI1HCz14nKxbrJvcXYyTDN9H+Qmbv49ntGMHKTfW2arcIujkYGz7UcRaM5MhetIkNwyCHdXSiDarmtDHO165XdNb2bzEBnvlGCE3R4PBOGGLzhgYAO3Yupt04fSLebZEUXDQ6rcFnFWtNaJ9gt0cOscpUPjbBSDMi74YcO36SilP8emqiWKwGTB8hC0C355vqMvLydTR8ETckZhC0QBZqYH1txp4FDKZ4I1zx2Jc/nHTWWCdjMgRVFcJ9ikqYExvF96sFnNHeEDhwWpfm0O0AGo5b1TPVMa+EngfepJX2HMTbylpx8x5BbbKMeFhsGcI87p2PE8wIDAQAB",
  "oauth2": {
    "client_id": "681555831884-qp77mnqvouihnou5sv38s3qvb1hn9qgf.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>"
      ]
    }
  ]
}