diff --git a/userscript-disable-youtube-autoplay-next.js b/userscript-disable-youtube-autoplay-next.js index 383fc78..11a23c8 100644 --- a/userscript-disable-youtube-autoplay-next.js +++ b/userscript-disable-youtube-autoplay-next.js @@ -2,7 +2,7 @@ // @name Disable YouTube "Autoplay next video" // @namespace https://vlw.se/ // @version 2026-04-10 -// @description Automatically disable autoplay of next video at the end of +// @description Automatically disable autoplay of next video at the end of the current video // @author Victor Westerlund // @match https://www.youtube.com/watch?v=* // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com @@ -25,5 +25,5 @@ requestIdleCallback(disableAutoplay); } - requestIdleCallback(disableAutoplay); + setTimeout(() => requestIdleCallback(disableAutoplay), 3000); })(); \ No newline at end of file