Skip to content

Instantly share code, notes, and snippets.

@christianvuerings
Last active September 23, 2018 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianvuerings/1e78b9e3200c9eb5d378c65c595ce459 to your computer and use it in GitHub Desktop.
Save christianvuerings/1e78b9e3200c9eb5d378c65c595ce459 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Udemy // Add Playback rates
// @namespace christianvuerings
// @version 0.2
// @description
// @author Christian Vuerings (christianvuerings)
// @include https://*.udemy.com/*
// @grant none
// ==/UserScript==
const videoPlayer = document.querySelector('.vjs-tech');
if (videoPlayer) {
videoPlayer.playbackRate = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment