GPT Summarizer

GPT Summarizer

A Chrome extension that utilizes ChatGPT to provide a summarized version of web articles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GPT Summarizer",
  "version": "1.1.0",
  "description": "A Chrome extension that utilizes ChatGPT to provide a summarized version of web articles.",
  "manifest_version": 3,
  "author": "M.Ho3ein Beshavard",
  "icons": {
    "16": "assets/icons/icon-16.png",
    "32": "assets/icons/icon-32.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/*.png",
        "assets/css/main.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {},
  "host_permissions": [
    "https://*.openai.com/*"
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting"
  ]
}