// ==UserScript== // @name Prevent Peacock Autoplay // @namespace prevent-peacock-autoplay // @description Automatically clicks the cancel button to prevent Peacock from automatically playing the next episode. // @version 0.1 // @match https://www.peacocktv.com/* // @icon https://www.google.com/s2/favicons?domain=peacocktv.com // @downloadURL none // ==/UserScript== setInterval(function(){ var cancelButton = document.querySelector('button.playback-binge__cancel-button') if(cancelButton !== null){ cancelButton.click() } }, 1000)