Simagizer - OpenAI ChatGPT Summary To Image

Simagizer - OpenAI ChatGPT Summary To Image

This extension provides a convenient solution for summarizing selected text on a webpage and generating a visual representation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simagizer - OpenAI ChatGPT Summary To Image",
  "description": "This extension provides a convenient solution for summarizing selected text on a webpage and generating a visual representation.",
  "version": "5.2",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "downloads"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}