Gist AI:Web,YouTube,PDF Summarizer w/ ChatGPT

Gist AI:Web,YouTube,PDF Summarizer w/ ChatGPT

ChatGPT-powered free Website, YouTube video and PDF summarizer. One extension to summarize everything!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "0.0.1.20",
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "pdf.worker.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://chat.openai.com/api/"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "webNavigation"
  ],
  "action": {
    "default_icon": {
      "16": "logo1.png",
      "48": "logo1.png",
      "128": "store_icon_128px.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "logo1.png",
    "48": "logo1.png",
    "128": "store_icon_128px.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}