Greasy Fork is available in English.

Youtube: AutoPlay Next Right Away

Play next video within 1 second of the end of a video.

< Відгуки до Youtube: AutoPlay Next Right Away

Відгук: OK - script works, but has bugs

§
Опубліковано: 02.07.2022
Edited: 02.07.2022

try fix with:
document.querySelectorAll('[class*="endscreen"][class*="button"]:not([style="display: none;"]) a[role=button]')[0];
work fine.

querySelectorAll because of [role=button]

§
Опубліковано: 02.07.2022
Edited: 02.07.2022
var autoPlayNextRightAway = setInterval(function() {
    var e = document.querySelectorAll('[class*="endscreen"][class*="button"]:not([style="display: none;"]) a[role=button]')[0];
    if (e) {
        e.click();
        autoPlayNextRightAway && clearInterval(autoPlayNextRightAway);
    }
}, 100);
§
Опубліковано: 02.07.2022

OUUPS!!
BAD TYPING.
HERE IS THE GOOD CODE.

autoPlayNextRightAway && clearInterval(autoPlayNextRightAway);

var autoPlayNextRightAway = setInterval(function() {
    var e = document.querySelectorAll('[class*="endscreen"][class*="button"]:not([style="display: none;"]) a[role=button]')[0];
    if (e) {
        e.click();
    }
}, 100);

Опублікувати відповідь

Sign in to post a reply.