Gistty: Amazon Review Summarizer

Gistty: Amazon Review Summarizer

Gistty is your quick-wit guide through Amazon's review jungle. Unlock the story behind the stars with Gistty's snapshots.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gistty: Amazon Review Summarizer",
  "description": "Gistty is your quick-wit guide through Amazon's review jungle. Unlock the story behind the stars with Gistty's snapshots.",
  "version": "1.0.6",
  "manifest_version": 3,
  "action": {},
  "permissions": [
    "webNavigation",
    "storage"
  ],
  "host_permissions": [
    "https://*.amazon.ca/*",
    "https://*.amazon.co.uk/*",
    "https://*.amazon.com/*",
    "https://*.amazon.de/*"
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.ca/*",
        "https://www.amazon.co.uk/*",
        "https://www.amazon.com/*",
        "https://www.amazon.de/*"
      ],
      "js": [
        "amazon.js"
      ]
    }
  ],
  "icons": {
    "128": "icon128.png",
    "256": "icon256.png"
  }
}