Insightfly: ChatGPT YouTube Summary

Insightfly: ChatGPT YouTube Summary

Insightfly is a chrome extension that allows you to generate a summary and insights of a youtube video.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Insightfly: ChatGPT YouTube Summary",
  "description": "Insightfly is a chrome extension that allows you to generate a summary and insights of a youtube video.",
  "version": "0.0.10",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "storage"
  ],
  "action": {
    "default_popup": "./popup/index.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://youtube.com/*",
    "https://www.youtube.com/*",
    "https://youtu.be/*",
    "https://www.youtu.be/*",
    "https://www.youtube-nocookie.com/*",
    "https://youtube-nocookie.com/*",
    "https://www.youtube.com/embed/*",
    "https://youtube.com/embed/*"
  ]
}