TheMercDeadpool / Stop Netflix Autoplay

// ==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 = "";
      });
    }
  });

})();