Skip to content

Instantly share code, notes, and snippets.

@dterracino
Forked from wesbos/lol.js
Created October 1, 2020 05:29
Show Gist options
  • Save dterracino/4ceb03c46042b1b925499c80da193e55 to your computer and use it in GitHub Desktop.
Save dterracino/4ceb03c46042b1b925499c80da193e55 to your computer and use it in GitHub Desktop.
// paste in your console
speechSynthesis.onvoiceschanged = function() {
var msg = new SpeechSynthesisUtterance();
msg.voice = this.getVoices().filter(v => v.name == 'Cellos')[0];
msg.text = Object.keys(window).join(' ');
this.speak(msg);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment