AmazonGPT Pros & Cons Analyzer

AmazonGPT Pros & Cons Analyzer

Discover the pros & cons of each Amazon product at a glance! Based on genuine customer reviews. Powered by ChatGPT AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AmazonGPT Pros & Cons Analyzer",
  "description": "Discover the pros & cons of each Amazon product at a glance! Based on genuine customer reviews. Powered by ChatGPT AI.",
  "version": "0.0.0.5",
  "permissions": [
    "scripting",
    "system.display"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/*",
        "https://*.amazon.co.uk/*",
        "https://*.amazon.de/*",
        "https://*.amazon.fr/*",
        "https://*.amazon.it/*",
        "https://*.amazon.es/*",
        "https://*.amazon.ca/*",
        "https://*.amazon.com.au/*",
        "https://*.amazon.in/*",
        "https://*.amazon.com.br/*",
        "https://www.amazon.com.mx/*"
      ],
      "js": [
        "textsAndLabels.js",
        "internationalization.js",
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://chatgpt.com/*",
    "https://chat.openai.com/*",
    "https://*.amazon.com/*",
    "https://*.amazon.co.uk/*",
    "https://*.amazon.de/*",
    "https://*.amazon.fr/*",
    "https://*.amazon.it/*",
    "https://*.amazon.es/*",
    "https://*.amazon.ca/*",
    "https://*.amazon.com.au/*",
    "https://*.amazon.in/*",
    "https://*.amazon.com.br/*",
    "https://www.amazon.com.mx/*"
  ]
}