Page 1 of 1

Automatically Go to Next Video

Posted: Fri Jun 04, 2021 7:29 pm
by TheYakattak
It would be cool if the app just skipped to the next video for you when one is over. Sort of how the YT playlists work on youtube.com.

Keep up the good work Barry!

Re: Automatically Go to Next Video

Posted: Fri Jun 04, 2021 8:06 pm
by BarryCarlyon
Will consider it

There are some YouTube rules that might prevent that.

Re: Automatically Go to Next Video

Posted: Tue Jun 28, 2022 1:51 am
by Sharrubo
i would love that feature too,

or maybe if the list of videoes below vodchat, automatcally scrolls to the next video if you click a new one. so you dont have to check which one you allrdy watched? maybe in combination with some "watched" feature that shows you below the tumbnail if you allrdy watched that oen

Re: Automatically Go to Next Video

Posted: Fri Dec 22, 2023 9:06 am
by CJonson234
I know this is an old thread, but I also would love skipping to the next video, or at least a button to go to the next video. Scrolling sometimes through hundreds of videos on the bottom bar is really annoying.

Re: Automatically Go to Next Video

Posted: Sun Jan 07, 2024 5:59 am
by JustTeaThankYou
CJonson234 wrote:
Fri Dec 22, 2023 9:06 am
I know this is an old thread, but I also would love skipping to the next video, or at least a button to go to the next video. Scrolling sometimes through hundreds of videos on the bottom bar is really annoying.
On this, I wrote a TamperMonkey script that automatically scrolls the horizontal video list to have the currently active window on the left on load. It doesn't happen live, just when you load the page, though there is nothing stopping you doing it live if you wanted. For me it's just so that when the tab inevitably gets reloaded I don't have to scroll for a billion hours to get up to the video I'm up to.

Code: Select all

// ==UserScript==
// @name         Scroll to video in playlist
// @namespace    http://tampermonkey.net/
// @version      2024-01-01
// @author       You
// @match        https://vodchat.cohhilition.com/video/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=cohhilition.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById('other_videos').scrollBy({
        left: document.getElementById(`video_${location.href.split('/').pop()}`).getBoundingClientRect().left
    })
})();