NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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); }); })();