YouTube Summarizer

YouTube Summarizer

Display ChatGPT summary on Youtube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Summarizer",
  "description": "Display ChatGPT summary on Youtube",
  "version": "1.1.4",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "https://*.openai.com/"
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content-script/index.js"
      ],
      "css": [
        "github-markdown.css",
        "styles.css"
      ]
    }
  ]
}