Enables window.speechSynthesis and window.SpeechSynthesisUtterance on browsers without native support.
bower install polyfill-speechsynthesis --save
var speech = new SpeechSynthesisUtterance('Hello, world!');
window.speechSynthesis.speak(speech);
A demo page is included in ./demo/index.html
Added a Grunt file with JSHint and Uglify Added a minified version of the polyfill (file size ~0.5 KB) Added source maps
Added CORS Proxy Bug fixes
Initial release