NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @author TheMercDeadpool
// @namespace https://openuserjs.org/users/TheMercDeadpool
// @name Stop Netflix Autoplay
// @description Stops all video and audio on the /browse page of Netflix.
// @copyright 2018, TheMercDeadpool (https://openuserjs.org/users/TheMercDeadpool)
// @license MIT
// @version 0.4
// @include https://www.netflix.com/browse*
// @require https://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
// ==OpenUserJS==
// @author TheMercDeadpool
// ==/OpenUserJS==
(function () {
'use strict';
$('body').bind('DOMSubtreeModified', function () {
var windowLoc = $(location).attr('pathname');
if (windowLoc.indexOf("browse") >= 0) {
$("video").each(function () {
this.pause();
this.src = "";
});
}
});
})();