NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Netflix Continue Playing // @description Automatically continues playing videos when Netflix interrupts the experience every third video with the "Continue Playing" dialog. // @author braincomb // @icon http://techblog.netflix.com/favicon.ico // @homepageURL https://github.com/braincomb/netflix-continueplaying // @namespace http://braincomb.com // @version 0.1.3 // @include http*://*.netflix.com/* // @include http*://netflix.com/* // @require https://code.jquery.com/jquery-2.1.4.min.js // @grant GM_registerMenuCommand // ==/UserScript== $(window).load(function() { setInterval(function() { var c = $('button.continue-playing'); if (c) { c.click(); } }, 5000); });