What is the difference between SpeechSynthesis and chrome.ttsWhat is the most efficient way to deep clone an object in JavaScript?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the !! (not not) operator in JavaScript?What does “use strict” do in JavaScript, and what is the reasoning behind it?What is the difference between call and apply?Storing Objects in HTML5 localStorageHow to decide when to use Node.js?Differences between lodash and underscoreWhat is the difference between Bower and npm?

Schwarzchild Radius of the Universe

Circuitry of TV splitters

Why don't electron-positron collisions release infinite energy?

Why is this code 6.5x slower with optimizations enabled?

What is the white spray-pattern residue inside these Falcon Heavy nozzles?

LED on same Pin as Toggle Switch, not illuminating

I probably found a bug with the sudo apt install function

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

Is it possible to make sharp wind that can cut stuff from afar?

whey we use polarized capacitor?

How do you conduct xenoanthropology after first contact?

Why is "Reports" in sentence down without "The"

A function which translates a sentence to title-case

Non-Jewish family in an Orthodox Jewish Wedding

How does one intimidate enemies without having the capacity for violence?

Can Medicine checks be used, with decent rolls, to completely mitigate the risk of death from ongoing damage?

The use of multiple foreign keys on same column in SQL Server

Chess with symmetric move-square

Why is the design of haulage companies so “special”?

Infinite past with a beginning?

Shell script can be run only with sh command

Motorized valve interfering with button?

Example of a relative pronoun

What makes Graph invariants so useful/important?



What is the difference between SpeechSynthesis and chrome.tts


What is the most efficient way to deep clone an object in JavaScript?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the !! (not not) operator in JavaScript?What does “use strict” do in JavaScript, and what is the reasoning behind it?What is the difference between call and apply?Storing Objects in HTML5 localStorageHow to decide when to use Node.js?Differences between lodash and underscoreWhat is the difference between Bower and npm?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








3















The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?



Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.










share|improve this question






























    3















    The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?



    Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.










    share|improve this question


























      3












      3








      3


      2






      The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?



      Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.










      share|improve this question
















      The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?



      Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.







      javascript google-chrome google-chrome-extension text-to-speech






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 22:42







      Brandon

















      asked Mar 22 at 0:59









      BrandonBrandon

      3016




      3016






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).






          share|improve this answer























          • I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

            – Brandon
            Mar 22 at 1:13






          • 1





            Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

            – Dai
            Mar 22 at 1:18











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291408%2fwhat-is-the-difference-between-speechsynthesis-and-chrome-tts%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).






          share|improve this answer























          • I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

            – Brandon
            Mar 22 at 1:13






          • 1





            Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

            – Dai
            Mar 22 at 1:18















          1














          Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).






          share|improve this answer























          • I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

            – Brandon
            Mar 22 at 1:13






          • 1





            Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

            – Dai
            Mar 22 at 1:18













          1












          1








          1







          Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).






          share|improve this answer













          Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 22 at 1:05









          DaiDai

          74.2k13120207




          74.2k13120207












          • I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

            – Brandon
            Mar 22 at 1:13






          • 1





            Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

            – Dai
            Mar 22 at 1:18

















          • I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

            – Brandon
            Mar 22 at 1:13






          • 1





            Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

            – Dai
            Mar 22 at 1:18
















          I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

          – Brandon
          Mar 22 at 1:13





          I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?

          – Brandon
          Mar 22 at 1:13




          1




          1





          Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

          – Dai
          Mar 22 at 1:18





          Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.

          – Dai
          Mar 22 at 1:18



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291408%2fwhat-is-the-difference-between-speechsynthesis-and-chrome-tts%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript