YouTube "Video paused. Continue watching?" Nuker

Autoclick the pesky "Video paused. Continue watching?" message that pops up when YouTube plays a while without any user interation.

// ==UserScript==
// @name         YouTube "Video paused. Continue watching?" Nuker
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Autoclick the pesky "Video paused. Continue watching?" message that pops up when YouTube plays a while without any user interation.
// @author       You
// @match        https://youtube.com/watch*
// @match        https://www.youtube.com/watch*
// @require      https://code.jquery.com/jquery-3.4.1.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.setInterval(function(){
        $("#confirm-button").click();
    }, 5000);
})();