text-to-speech-extension
Version:
A Chrome extension that reads aloud any text on the screen, supporting voice and speed adjustments.
24 lines (23 loc) • 627 B
HTML
<html>
<head>
<title>Text Reader Aloud</title>
<style>
body { font-family: Arial, sans-serif; }
#startButton, #stopButton { margin: 5px; }
#settings { margin-top: 10px; }
</style>
</head>
<body>
<button id="startButton">Start Reading</button>
<button id="stopButton">Stop Reading</button>
<div id="settings">
<label for="voices">Voice:</label>
<select id="voices"></select>
<br>
<label for="speed">Speed:</label>
<input type="range" id="speed" min="0.5" max="2" value="1" step="0.1">
</div>
<script src="popup.js"></script>
</body>
</html>