xxxxxxxxxx
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!
xxxxxxxxxx
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
xxxxxxxxxx
$('video').playbackRate = X
// (X is speed)
Open console and copy above command, replace x by your desired speed.
xxxxxxxxxx
Para ativar a política de execução de scripts:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Para desativar a política de execução de scripts:
Set-ExecutionPolicy -ExecutionPolicy Restricted -Scope CurrentUser
Para desativar temporariamente a política de execução de scripts:
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
exemplo para ativar o AV
PS D:\My_projects\app-restaurante> .\AV-app-restaurante\Scripts\activate
Resultado => (AV-app-restaurante) PS D:\My_projects\app-restaurante> .\AV-app-restaurante\Scripts\activate