YouTube Videos Summary Easy Copy with AI

YouTube Videos Summary Easy Copy with AI

YouTube videos transcript and summary with AI. Easily copy responses of AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "1.0.7",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "16": "images/48.png",
      "32": "images/48.png",
      "48": "images/48.png",
      "128": "images/48.png",
      "300": "images/48.png",
      "500": "images/48.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "css": [
        "css/youtube_summary.css"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "js/OpenAiCopy.js"
      ],
      "css": [
        "css/youtube_summary.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://*.openai.com/*",
    "https://*.youtube.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/48.png",
        "images/extension_ui.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/48.png",
    "32": "images/48.png",
    "48": "images/48.png",
    "128": "images/48.png",
    "300": "images/48.png",
    "500": "images/48.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}