YoutubeGPT - Youtube Video Summary

YoutubeGPT - Youtube Video Summary

Summarize any-length youtube videos in minutes, save time, become more productive, be a better learner. Embedded GUI for youtube videos, click to see example of how it works. Ask questions about the video. Powered by ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YoutubeGPT - Youtube Video Summary",
  "version": "1.2.4",
  "description": "Summarize any-length youtube videos in minutes, save time, become more productive, be a better learner. Embedded GUI for youtube videos, click to see example of how it works. Ask questions about the video. Powered by ChatGPT.",
  "icons": {
    "16": "Icon-16.png",
    "48": "Icon-48.png",
    "128": "Icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "*://*.youtube.com/*",
    "https://www.youtube.com/watch?*",
    "https://www.youtube.com/playlist?*",
    "https://chat.openai.com/backend-api/conversation",
    "storage",
    "webRequest",
    "webNavigation",
    "activeTab",
    "cookies",
    "https://chat.openai.com/api/auth/session",
    "https://chat.openai.com/api/chat"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "https://www.youtube.com/watch?*",
        "https://www.youtube.com/playlist?*"
      ],
      "js": [
        "summariser.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "YouTubeGPT",
    "default_popup": "./popup.html"
  },
  "applications": {
    "gecko": {
      "id": "{c5758ebd-f688-4eb3-925d-7cd5f577fcdb}"
    }
  }
}