Youtube Summary with ChatGPT 4

Youtube Summary with ChatGPT 4

Youtube Video Summary with ChatGPT extension, see transcripts of videos and summarize YouTube videos.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_Name__",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "default_locale": "en",
  "background": {
    "service_worker": "js/bg.js"
  },
  "action": {
    "default_icon": {
      "16": "pics/48.png",
      "32": "pics/48.png",
      "48": "pics/48.png",
      "128": "pics/48.png",
      "300": "pics/48.png",
      "500": "pics/48.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "activeTab",
    "webRequest",
    "gcm",
    "notifications"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/cs.js"
      ],
      "css": [
        "css/yt_sum.css"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "js/OpenAiCopy.js"
      ],
      "css": [
        "css/yt_sum.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pics/48.png",
        "pics/extension_ui.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "pics/48.png",
    "32": "pics/48.png",
    "48": "pics/48.png",
    "128": "pics/48.png",
    "300": "pics/48.png",
    "500": "pics/48.png"
  }
}