Don't stop video on tab change

Prevents sites like instagram from stopping videos on tab change.

// ==UserScript==
// @name         Don't stop video on tab change
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Prevents sites like instagram from stopping videos on tab change.
// @author       Can Kurt
// @match        *://*/*
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener("visibilitychange", function(event) {
        event.stopImmediatePropagation();
    }, true);

    window.addEventListener("webkitvisibilitychange", function(event) {
        event.stopImmediatePropagation();
    }, true);
})();