ChatGPT Summary - AI for websites, videos

ChatGPT Summary - AI for websites, videos

Summarize any webpage or Youtube video using ChatGPT and save time. Get the summary Chat GPT. Summaries GPT-4.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.3",
  "icons": {
    "48": "assets/48.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "background": {
    "service_worker": "javascripts/worker.js"
  },
  "action": {},
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "popup.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "svgfiles/aigpt.svg",
        "svgfiles/iterate.svg",
        "svgfiles/close.svg",
        "content.css",
        "popup.css",
        "settings.html",
        "javascripts/setting.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}