Making a bookmark with:
javascript: r = prompt("Enter Rate"); document.getElementsByClassName("video-stream")[0].playbackRate = parseFloat(r);
as the link allows you to choose your speed everytime. I personally make a couple different default ones with:
javascript: r = 4; document.getElementsByClassName("video-stream")[0].playbackRate = parseInt(r);
Replacing 4 with what I want. The first will allow non-integers like 1.5. The second only works with round numbers, aka 1,5,7 etc. I think it will not work above 15x though.