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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.11",
  "default_locale": "en",
  "manifest_version": 3,
  "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/",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmczicrPk4+vqEGee+hvVOGPk3Byo0gCCQ38nEanOH/qqkQxwhhrxnrTk9zGfQ0s0bDXQh9GGutARSha09pVnLll0gGHcj2cuBOgiQScrYE7xCpauA5Q1OIBIDxV8dUJBxPW7xuVslglHCjgv09GP/eyqojfaglF+W8QGbJCX+rbiCGiGDGMluxP2FEIR7kBtrYo5mw6wridwH+vZvb8D1qHAHDReraodetm2/GMuozEWvnynILT0RCGKAaRi3/rnWDdtdXrffzCHW2ZuJturjCw/6I9QeHVpEo/00FQ6OsbihqkBiM/BvFBGiCe8L60EdKWmGvCqiK9ekRS5q3FEqQIDAQAB",
  "options_page": "src/options/options.html",
  "background": {
    "service_worker": "src/background/background.js"
  }
}