NoteGPT: YouTube & Web Summary with ChatGPT

NoteGPT: YouTube & Web Summary with ChatGPT

Summarize youtube videos and articles with ChatGPT & Claude 3 and easy to note or mind mapping.

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_description__",
  "version": "1.3.11.0",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "https://*.youtube.com/*",
    "https://*.openai.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-src https://notegpt.io/;"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "logo.png",
      "32": "logo.png",
      "48": "logo.png",
      "128": "logo.png",
      "300": "logo.png",
      "500": "logo.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "css": [
        "content-script.css",
        "static/css/index.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/element-ui.js",
        "content-script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "OpenAiCopy.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "logo.png",
        "static/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}