Unlimited Summary Generator for YouTube™

Unlimited Summary Generator for YouTube™

YouTube videos transcript and summary with Chat GPT Open AI. Easily copy responses of ChatGPT.

Merlin
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.10",
  "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"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "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/*"
      ],
      "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"
  }
}