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