Speed Up Youtube Videos More Than 2x

[Solved] Speed Up Youtube Videos More Than 2x | Whatever - Code Explorer | yomemimo.com
Question : speed up youtube videos more than 2x

Answered by : jealous-jay-atx1xwa7ddz9

Windows: Ctrl + Shift + J
macOS: Command + Option + J
Copy and paste this into the console:
document.getElementsByTagName("video")[0].playbackRate = x
Replace x with the speed you want the video to be played at, and enter/return.
Works for speeds with decimals too, so you can try 3, 0.1, 200, etc.
Cheers!

Source : | Last Update : Fri, 02 Apr 21

Question : more than 2x speed on youtube

Answered by : oldfashioned-otter-6rf9v7v18jat

Ctrl+Shift+J
document.getElementsByTagName("video")[0].playbackRate = x

Source : | Last Update : Fri, 11 Jun 21

Question : youtube speed more than 2

Answered by : thoughtful-thrush-r80k8bxt6cp7

document.getElementsByTagName(“video”)[0].playbackRate = x

Source : https://medium.com/@rbhatia46/watch-youtube-videos-faster-than-2x-with-one-line-of-code-dd29f9524945 | Last Update : Fri, 18 Sep 20

Question : youtube video speed more than 2x

Answered by : adarsh-singh

Windows: Ctrl + Shift + J
macOS: Command + Option + J
Copy and paste this into the console:
window.addEventListener("keydown", e => {	if (e.key === "]") {	document.getElementsByTagName("video")[0].playbackRate += 0.1;	}	if (e.key === "[") {	document.getElementsByTagName("video")[0].playbackRate -= 0.1;	}
});
close dev tools with
Windows: Ctrl + Shift + J
macOS: Command + Option + J
press ] to increase and [ to decrease youtube speed

Source : | Last Update : Mon, 16 May 22

Question : youtube more than 2x speed

Answered by : delightful-duck-e8k2ponp7bxk

js console:
document.getElementsByTagName(“video”)[0].playbackRate = x

Source : https://medium.com/@rbhatia46/watch-youtube-videos-faster-than-2x-with-one-line-of-code-dd29f9524945 | Last Update : Thu, 26 Nov 20

Answers related to speed up youtube videos more than 2x

Code Explorer Popular Question For Whatever