Udemy Summary with OpenAI

Udemy Summary with OpenAI

Generate Udemy video summaries with OpenAI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Generate Udemy video summaries with OpenAI",
  "version": "2.0",
  "manifest_version": 3,
  "name": "Udemy Summary with OpenAI",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.udemy.com/course/*/learn/lecture/*",
    "https://api.openai.com/"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-48.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.udemy.com/course/*/learn/lecture/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ]
}