Skip to content

Instantly share code, notes, and snippets.

@MarkoSh
Created December 30, 2024 22:01
Show Gist options
  • Save MarkoSh/01e13ed5b10df92bc25504cf56b81467 to your computer and use it in GitHub Desktop.
Save MarkoSh/01e13ed5b10df92bc25504cf56b81467 to your computer and use it in GitHub Desktop.
Disable throttling functions like setTimeout, setInterval in inactive tabs in Chrome
function doNotThrottleMyTimers() {
const audioContext = new AudioContext();
const constantSource = audioContext.createConstantSource();
constantSource.connect(audioContext.destination);
constantSource.start();
}
doNotThrottleMyTimers();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment