Greasy Fork is available in English.
This script skips primevideo ADS
< Commentaires sur Skip Amazon Prime Video Ads
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); })();
Connectez-vous pour poster une réponse.
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.