Chrome extension as an API
I want to build a smart home system with voice commands, that should be
able to respond to you.
After playing with Windows SAPI for speech-to-text, I've found it to be
extremely bad, and have settled on the new HTML5 Speech API, which is
supported by Chrome.
Unfortunately Chrome doesn't also support text-to-speech, except for
extensions. That's why I want to know if extensions can expose JavaScript
functions that can be called from a website.
So basically what I want is to call a JS function from my site, that would
call an internal extension function (that I will build), which would call
the Chrome TTS function. Is something like this possible?
No comments:
Post a Comment