“Velocidad de video de YouTube más de 2x” Código de respuesta

Acelera los videos de YouTube más de 2x

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!
Jealous Jay

Velocidad de YouTube más de 2

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

más de 2x velocidad en YouTube

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

youtube más de 2x velocidad

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

Velocidad de video de YouTube más de 2x

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
Adarsh

Respuestas similares a “Velocidad de video de YouTube más de 2x”

Preguntas similares a “Velocidad de video de YouTube más de 2x”

Más respuestas relacionadas con “Velocidad de video de YouTube más de 2x” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código