Examine source code of Udemy Summary with OpenAI

Inspect and view changes in Udemy Summary with OpenAI source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
      ]
    }
  ]
}