Greasy Fork is available in English.

Disable YouTube Video Ads

Disable YouTube video & screen based ads at home page, and right before or in the middle of the main video playback. Also disable YouTube's anti-adblocker popup dialog. For new YouTube layout (Polymer) only.

< 腳本Disable YouTube Video Ads的回應

評論:正評 - 腳本一切正常

§
發表於:2023-11-06
編輯:2023-11-06

It works as intended, but no autoplay sucks for me. Any chances to change ?

§
發表於:2024-02-01

add this code as a bookmark (written by chatGPT and been used by me for quite a while now) and then you'll just have to click on it on a yt page, when it skips to the next one you don't have to click on it again. If you open a new youtube page you will have to click on it again if you want it to autoplay

javascript:(function() { function skipToNextVideo() { var video = document.querySelector('video'); if (video && !video.paused) { var currentTime = video.currentTime; var duration = video.duration; if (duration - currentTime <= 1) { var nextButton = document.querySelector('.ytp-next-button'); if (nextButton) { nextButton.click(); } } } } setInterval(skipToNextVideo, 1000); })();

發表回覆

登入以回復