Udemy™ Faster Autoplay

Udemy™ Faster Autoplay

Removes the 3-second delay before autoplaying the next video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Udemy™ Faster Autoplay",
  "version": "0.2",
  "description": "Removes the 3-second delay before autoplaying the next video.",
  "author": "Elliot Waite",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.udemy.com/*"
      ],
      "js": [
        "lib/jquery-3.6.0.min.js",
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ]
}