Skip Amazon Prime Video Ads

This script skips primevideo ADS

< Feedback on Skip Amazon Prime Video Ads

Review: OK - script works, but has bugs

dgw
§
Posted: 20-12-2021

I have tweaked this to cancel its interval function once the skip button has been clicked, to remove any background performance impact once the main video content has started.

(function() {
    'use strict';
    let handlerID = setInterval(
        function(){
            if(document.querySelectorAll('.adSkipButton.skippable').length){
                document.querySelector('.adSkipButton.skippable').click();
                clearInterval(handlerID);
            }
        }
        ,100);
})();

Post reply

Sign in to post a reply.