I create mod which reproduces background music, and i have 2 track(track_1.mp3 and track_2.mp3), when i install this mod in Opera and turned on background music, plays only first track, and the second track overlaps, not all of it, always when i  use keyboard or mouse.
My manifest.json:
{
    "manifest_version": 3,
    "name": "S.T.A.L.K.E.R. & Metro",
    "description": "Mod for S.T.A.L.K.E.R. and Metro fans",
    "version": "1.1",
    "icons":
    {
        "1540": "icon_1540.png"
    },
    "developer":
    {
        "name": "Mandi_OS"
    },
    "mod":
    {
        "schema_version": 1,
        "payload":
        {	
            "background_music":
            [
                "music/track_1.mp3",
                "music/track_2.mp3"
            ],
            "wallpaper":
            {
                "dark":
                {   
		    "image": "wallpaper/wallpaper_1.jpg",
		    "text_color": "#FFFFFF",
                    "text_shadow": "#757575"
                },
		    "light":
                {   
	            "image": "wallpaper/wallpaper_1.jpg",
                    "text_color": "#FFFFFF",
                    "text_shadow": "#0B000E"
                }
	    }
        }
    }
}
Please tell me how i can fix that?