NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Unpause Netflix // @namespace about:blank // @description Automatically continues playing videos when Netflix interrupts the experience every third video. // @include https://www.netflix.com/* // @icon https://www.netflix.com/favicon.ico // @version 1.2 // @grant none // @updateURL https://openuserjs.org/meta/Sauvegarde/Unpause_Netflix.meta.js // @downloadURL https://openuserjs.org/install/Sauvegarde/Unpause_Netflix.user.js // @copyright 2019, Sauvegarde (https://openuserjs.org/users/Sauvegarde) // @license MIT // ==/UserScript== setInterval(() => { const interrupter = document.querySelector(".interrupter-actions a"); if(interrupter) { interrupter.click(); } }, 1200);