Greasy Fork

GBF Sound Focus

Continue playing sound when browser loses focus.

// ==UserScript==
// @name         GBF Sound Focus
// @version      0.1
// @description  Continue playing sound when browser loses focus.
// @author       Lalabels
// @match        *://game.granbluefantasy.jp/*
// @match        *://gbf.game.mbga.jp/*
// @grant        none
// @namespace https://greasyfork.org/users/289229
// ==/UserScript==

(function() {

    var settings =
        {
            keepSoundOn: true
        };

    if (settings.keepSoundOn) {
        window.addEventListener("blur", function (e) {
            e.stopImmediatePropagation();
        });
    }
})();