MissAV.com Stop pause video_

Removed the function to force video to pause when moving focus

// ==UserScript==
// @name         MissAV.com Stop pause video_
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removed the function to force video to pause when moving focus
// @author       MC Moo Hyun
// @match        *://missav.com/*
// @run-at       document-start
// @grant        none
// @license      MIT
// ==/UserScript==


(function() {
    'use strict';

    document.addEventListener('visibilitychange', (event) => {
        event.stopImmediatePropagation();
    }, true);

    document.addEventListener('blur', (event) => {
        event.stopImmediatePropagation();
    }, true);

    window.addEventListener('blur', (event) => {
        event.stopImmediatePropagation();
    }, true);
})();