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!
Automatically Go to Next Video
- BarryCarlyon
- Posts: 396
- Joined: Thu Jan 23, 2014 11:43 am
- Location: Internet
- Contact:
Will consider it
There are some YouTube rules that might prevent that.
There are some YouTube rules that might prevent that.
- Sharrubo
- Posts: 1
- Joined: Thu Dec 03, 2015 12:29 pm
- Contact:
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
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
- CJonson234
- Posts: 2
- Joined: Sat Jan 03, 2015 4:47 pm
- Contact:
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.
- JustTeaThankYou
- Posts: 3
- Joined: Fri May 12, 2017 7:52 am
- Contact:
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.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.
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
})
})();
- gkjzhgffjh
- Posts: 10
- Joined: Mon Feb 02, 2015 10:44 am
- Contact:
Yeah, I would appreciate this feature as well. For now, I've written my own Tapermonkey script that adds a "Next Video"-Button that simulates a click on the next video in line when clicked. I know next to nothing about javascript, so I didn't manage to read the YouTube player state, sadly.
You can get the script from https://greasyfork.org/en/scripts/50009 ... deo-button
You can get the script from https://greasyfork.org/en/scripts/50009 ... deo-button
- redmor1
- Posts: 1
- Joined: Sat Aug 12, 2017 7:29 pm
- Contact:
Thank you guys for making scripts, they're pretty cool