mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-01 14:20:01 +07:00
* Remove docs folder. This was a redirect from a GitHub pages site that does not appear to be in use. * Rename api folder to api-samples. * Move examples to functional-samples folder. * Move cookbook sample to functional-samples. * Move tutorials to functional-samples folder. * Move mv2 and apps folders to _archive. * Rename tools folder to .repo. * Move reference folder to functional-samples. * Update README. Update README with new relative links for reorg. * Update README.md Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Chrome TTS Debug</title>
|
|
<link href="ttsdebug.css" rel="stylesheet" type="text/css">
|
|
<script src="ttsdebug.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<h2>Chrome Text-to-Speech Debug</h2>
|
|
|
|
<div id="instructions">
|
|
<p>
|
|
This app is for developers of Chrome TTS engines, to help validate that
|
|
an engine is properly implementing the API. Click on a button to run a
|
|
test. A lot of errors can be detected automatically, but some tests
|
|
require manually listening to the speech, and it's important to listen to
|
|
all tests running to identify other potential glitches.</p>
|
|
<p>For more diagnostic information, open the JavaScript console.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label for="voices">Voice:</label>
|
|
|
|
<select id="voices">
|
|
<option value="">Unspecified</option>
|
|
</select>
|
|
|
|
<button id="stop">Emergency Stop!</button>
|
|
</div>
|
|
|
|
<div id="container"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|