“Prędkość wideo na YouTube ponad 2x” Kod odpowiedzi

Przyspiesz filmy z YouTube ponad 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

Prędkość YouTube więcej niż 2

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

Ponad 2x prędkość na YouTube

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

YouTube więcej niż 2x prędkość

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

Prędkość wideo na YouTube ponad 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

Odpowiedzi podobne do “Prędkość wideo na YouTube ponad 2x”

Pytania podobne do “Prędkość wideo na YouTube ponad 2x”

Więcej pokrewnych odpowiedzi na “Prędkość wideo na YouTube ponad 2x” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu