SummifyYT (Summarize YouTube Comments)

SummifyYT (Summarize YouTube Comments)

SummifyYT is a browser extension that summarizes comments of YouTube videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SummifyYT (Summarize YouTube Comments)",
  "version": "0.0.9",
  "description": "SummifyYT is a browser extension that summarizes comments of YouTube videos.",
  "host_permissions": [
    "https://*.openai.com/"
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*",
        "https://youtu.be/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "icons/*"
      ],
      "matches": [
        "https://*.youtube.com/*",
        "https://youtu.be/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "64": "icons/logo64.png",
    "128": "icons/logo128.png"
  }
}