Youtube Summary With ChatGPT

Youtube Summary With ChatGPT

Save time by reading a summary of the video you are watching. Supports ChatGPT, Gemini and Claude AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.8",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "src/vendor/pdfjs/pdf.worker.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "src/options/options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "src/content-scripts/yt-widget/index.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "js": [
        "src/content-scripts/web-widget/index.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*.youtube.com/*",
        "*://chat.openai.com/*",
        "*://chatgpt.com/*",
        "*://*.claude.ai/*",
        "*://gemini.google.com/*"
      ]
    },
    {
      "js": [
        "src/content-scripts/prompter/index.js"
      ],
      "matches": [
        "*://chat.openai.com/*",
        "*://chatgpt.com/*",
        "*://*.claude.ai/*",
        "*://gemini.google.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.dictanote.co/*",
      "https://dictanote.co/*",
      "http://localhost:8000/*"
    ]
  },
  "homepage_url": "https://dictanote.co/youtube-summary/",
  "options_page": "src/options/options.html",
  "background": {
    "service_worker": "src/background/background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}