Steam Review Summarizer

Steam Review Summarizer

Summarizes Steam reviews with the power of OpenAI's GPT models.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Steam Review Summarizer",
  "description": "Summarizes Steam reviews with the power of OpenAI's GPT models.",
  "version": "1.4",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://store.steampowered.com/*"
      ],
      "js": [
        "extension.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "19": "images/icon19.png",
    "38": "images/icon38.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}