// ==UserScript== // @name Prevent Tubi Autoplay // @version 0.1 // @description Prevents autoplay on Tubi // @match https://tubitv.com/tv-shows/* // @namespace https://greasyfork.org/users/189717 // @downloadURL none // ==/UserScript== setInterval(() => { if(document.querySelector('a[href*=autoplay]')){ // The overlay for autoplaying then next episode is visible document.querySelector('video').pause() } })