hyunwoona / Remove Netflix Pause Overlay

// ==UserScript==
// @name         Remove Netflix Pause Overlay
// @namespace    mailto:ericnahw@gmail.com
// @version      0.1
// @description  Remove Netflix Pause Overlay
// @author       hyunwoona
// @license      MIT
// @match        https://www.netflix.com/watch/*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';

    $(document).ready(function() {
        setInterval(() => {
            $("[class*='layout--dimmed'").css({"backgroundColor": "transparent"});
            $(".evidence-overlay").hide();
        }, 1000);
    });
})();