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