ChatGPT Summarizer

ChatGPT Summarizer

Send selected text to ChatGPT and ask it to summarize in your desired language

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Summarizer",
  "version": "1.1",
  "description": "Send selected text to ChatGPT and ask it to summarize in your desired language",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icon.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "webNavigation",
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "https://chat.openai.com/"
  ],
  "icons": {
    "128": "icon.png"
  }
}