{ const { type } = event.data; if (type === "mute") { muteAllAudio(); } else if (type === "unmute") { unmuteAllAudio(); } }); function muteAllAudio() { window.__GLOBAL_MUTE__ = true; window.__ALL_AUDIOS__.forEach(a => { a.muted = true; try { a.pause(); } catch { } }); // Suspend AudioContext if (window.__ALL_AUDIO_CONTEXTS__) { window.__ALL_AUDIO_CONTEXTS__.forEach(ctx => { try { ctx.suspend(); } catch { } }); } console.log("🔇 All sounds muted"); } function unmuteAllAudio() { window.__GLOBAL_MUTE__ = false; window.__ALL_AUDIOS__.forEach(a => { a.muted = false; }); // Resume AudioContext if (window.__ALL_AUDIO_CONTEXTS__) { window.__ALL_AUDIO_CONTEXTS__.forEach(ctx => { try { ctx.resume(); } catch { } }); } console.log("🔊 All sounds unmuted"); } 167" href="/favicon/favicon-167x167.png">