Disable Roku Autoplay

Disables Roku autoplay

// ==UserScript==
// @name         Disable Roku Autoplay
// @namespace    disable-roku-autoplay
// @version      0.2
// @description  Disables Roku autoplay
// @match        https://therokuchannel.roku.com/*
// ==/UserScript==

(new MutationObserver(function(mutations_list) {
    if(document.querySelector('.countdown-timer') !== null){
        document.querySelector('video').pause()
    }
})).observe(document, { subtree: true, childList: true })