ChatGPT for Chrome & YouTube Summary by Glasp

ChatGPT for Chrome & YouTube Summary by Glasp

Access ChatGPT from the Chrome toolbar and get transcripts and summaries of YouTube videos. Powered by ChatGPT & Claude.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT for Chrome & YouTube Summary by Glasp",
  "version": "1.1.4",
  "manifest_version": 3,
  "description": "Access ChatGPT from the Chrome toolbar and get transcripts and summaries of YouTube videos. Powered by ChatGPT & Claude.",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "",
    "default_icon": {
      "48": "images/48.png"
    }
  },
  "permissions": [
    "storage",
    "system.display"
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://www.youtube.com/*",
        "https://claude.ai/*",
        "https://chat.mistral.ai/*"
      ],
      "js": [
        "contentscript/index.bundle.js"
      ],
      "css": [
        "css/yt_summary.css"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "48": "images/48.png"
  }
}