Udemy Enhancer

Udemy Enhancer

A useful tool to improve the user experience of Udemy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Udemy Enhancer",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "A useful tool to improve the user experience of Udemy.",
  "icons": {
    "16": "dist/images/magic-wand16.png",
    "32": "dist/images/magic-wand32.png",
    "48": "dist/images/magic-wand48.png",
    "128": "dist/images/magic-wand128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "https://*.udemy.com/*",
    "<all_urls>"
  ],
  "action": {
    "default_title": "Click Me",
    "default_popup": "dist/popup.html"
  },
  "background": {
    "service_worker": "dist/js/index.js"
  },
  "options_page": "dist/option.html",
  "content_scripts": [
    {
      "matches": [
        "https://*.udemy.com/course/*/learn/*"
      ],
      "js": [
        "dist/js/injector.js"
      ],
      "css": [
        "dist/css/injector.css"
      ]
    }
  ]
}