Skip to content

Instantly share code, notes, and snippets.

@bagwanpankaj
Forked from wesbos/lol.js
Created February 18, 2016 12:58
Show Gist options
  • Save bagwanpankaj/8cfbed36406d271199aa to your computer and use it in GitHub Desktop.
Save bagwanpankaj/8cfbed36406d271199aa 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