Here is a little Tampermonkey script for Chrome that automatically clicks the “Continue playing” button when it pops up on Netflix, pausing the current stream.
// ==UserScript==// @name Netflix auto continue play// @namespace https://www.castledragmire.com/Posts/Netflix_Auto_Continue_Play// @version 1.0// @description When netflix pops up the "Continue play" button, this script auto-selects "Continue" within 1 second// @author Dakusan// @match http://www.netflix.com/// @grant none// ==/UserScript==setInterval(function() {
var TheElements=document.getElementsByClassName('continue-playing');
for(var i=0;i<TheElements.length;i++)
if(/\bbutton\b/.test(TheElements[i].className))
{
console.log('"Continue Playing" Clicked');
TheElements[i].click();
}
}, 1000);
Make sure to set the “User matches” in the settings page to include both “http://www.netflix.com/*” and “https://www.netflix.com/*”.
To add comments, please go to the forum page for this post (guest comments are allowed for the Projects, Posts, and Updates Forums). Comments are owned by the user who posted them. We accept no responsibility for the contents of these comments.