NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Netflix Uninterrupter11
// @namespace wardogsq@hotmail.com
// @version 0.6
// @description Watch uninterrupted netflix!
// @author Luke Seraphin (edited by pigy)
// @match http://www.netflix.com/WiPlayer*
// @match *://*.netflix.com/*
// @grant none
// ==/UserScript==
setInterval(function(){
if(document.getElementsByClassName('player-autoplay-interrupter')[0]){
document.getElementsByClassName('button continue-playing')[0].click();
}
}, 600);