Automatically Go to Next Video

For all the Suggestions and Feedback for https://vodchat.cohhilition.com/
Post Reply
User avatar
TheYakattak
Posts: 1
Joined: Tue Aug 08, 2017 11:11 am
Contact:

Fri Jun 04, 2021 7:29 pm

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!
User avatar
BarryCarlyon
Posts: 391
Joined: Thu Jan 23, 2014 11:43 am
Location: Internet
Contact:

Fri Jun 04, 2021 8:06 pm

Will consider it

There are some YouTube rules that might prevent that.
User avatar
Sharrubo
Posts: 1
Joined: Thu Dec 03, 2015 12:29 pm
Contact:

Tue Jun 28, 2022 1:51 am

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
User avatar
CJonson234
Posts: 2
Joined: Sat Jan 03, 2015 4:47 pm
Contact:

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.
User avatar
JustTeaThankYou
Posts: 3
Joined: Fri May 12, 2017 7:52 am
Contact:

Sun Jan 07, 2024 5:59 am

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
    })
})();
Post Reply