Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save yuuslokrobjakkroval/df1b1900e938fb74b7f96780a764d9cd to your computer and use it in GitHub Desktop.

Select an option

Save yuuslokrobjakkroval/df1b1900e938fb74b7f96780a764d9cd to your computer and use it in GitHub Desktop.

Note

This works well on browsers. Desktop app works too but could fail from time to time.

How to use this script:

  1. Click on 'Start Video Quest'
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. 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_"]'));
    }
})();
  1. 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
  2. Wait until the video is played with new playback speed
  3. Profit???
@Mimibienv
Copy link

Yo that's the version of the script I wrote ! You don't need to do the step 5, it does it automatically here.

@yuuslokrobjakkroval
Copy link
Author

Yo that's the version of the script I wrote ! You don't need to do the step 5, it does it automatically here.

Noted with thanks, I just copy and share.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment