// ==UserScript== // @name netflix-speed // @version 0.1 // @include https://www.netflix.com/watch/* // ==/UserScript== var speed_control = document.createElement('select'); speed_control.style.cssText = ` border:none; -moz-appearance: none; -webkit-appearance: none; appearance: none; cursor: pointer; background: none; `; speed_control.onchange = function() { document.getElementsByClassName('VideoContainer')[0].getElementsByTagName('video')[0].playbackRate = this.value; }; speed_control.innerHTML = ` `; function append(){ if(!document.getElementsByClassName('PlayerControlsNeo__controls-group').length) { setTimeout(append, 200); } else { console.log(document.getElementsByClassName('PlayerControlsNeo__controls-group')[0]); document.getElementsByClassName('PlayerControlsNeo__controls-group')[0].appendChild(speed_control); } } append();