Note
This works well on browsers. Desktop app works too but could fail from time to time.
How to use this script:
- Click on 'Start Video Quest'
- Press Ctrl+Shift+I to open DevTools
- Go to the
Consoletab - Paste the following code and hit enter:
(() => {
const video = document.querySelector('div[class^="videoCont_"] video');
if (video) {
const newSpeed = 16;
if (newSpeed && !isNaN(newSpeed)) {
video.playbackRate = parseFloat(newSpeed);
console.log(`Playback speed set to ${newSpeed}x`);
}
} else {
alert('No video element found');
console.log('Available video elements:', document.querySelectorAll('video'));
console.log('Available videoCont divs:', document.querySelectorAll('div[class^="videoCont_"]'));
}
})();- Enter desired playback speed
- Around 10 is fine
- If you want to go crazy, you can enter a higher playback speed but no gurantee the quest will be completed
- Wait until the video is played with new playback speed
- Profit???
Yo that's the version of the script I wrote ! You don't need to do the step 5, it does it automatically here.