Offline Text To Speech
45 | 46 | 47 |48 | Offline Text To Speech is now available as a browser extension! 49 |
50 |51 | Download it here 54 |
55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 102 | 103 |├── .DS_Store ├── README.md ├── TODO.md ├── assets ├── .DS_Store ├── banner.png ├── bannerBG.png ├── icon.png ├── icons │ ├── .DS_Store │ ├── pauseIcon.svg │ ├── resumeIcon.svg │ ├── speakIcon.svg │ └── stopIcon.svg ├── screenshots │ ├── Screenshot 2021-09-05 at 12.25.52 PM.png │ ├── Screenshot 2021-09-05 at 12.26.15 PM.png │ └── Screenshot 2021-09-05 at 12.26.25 PM.png └── whiteGlossBackground.png ├── index.html ├── index.js └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Offline Text To Speech](https://virejdasani.github.io/OfflineTextToSpeech/) 2 | ## Also check out [Offline Text To Speech Browser Extension](https://virejdasani.github.io/OfflineTextToSpeech-Extension/) 3 |  4 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | Add dark mode 2 | -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/.DS_Store -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/banner.png -------------------------------------------------------------------------------- /assets/bannerBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/bannerBG.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/icons/.DS_Store -------------------------------------------------------------------------------- /assets/icons/pauseIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 20 | -------------------------------------------------------------------------------- /assets/icons/resumeIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 17 | -------------------------------------------------------------------------------- /assets/icons/speakIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 27 | -------------------------------------------------------------------------------- /assets/icons/stopIcon.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 20 | -------------------------------------------------------------------------------- /assets/screenshots/Screenshot 2021-09-05 at 12.25.52 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/screenshots/Screenshot 2021-09-05 at 12.25.52 PM.png -------------------------------------------------------------------------------- /assets/screenshots/Screenshot 2021-09-05 at 12.26.15 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/screenshots/Screenshot 2021-09-05 at 12.26.15 PM.png -------------------------------------------------------------------------------- /assets/screenshots/Screenshot 2021-09-05 at 12.26.25 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/screenshots/Screenshot 2021-09-05 at 12.26.25 PM.png -------------------------------------------------------------------------------- /assets/whiteGlossBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virejdasani/OfflineTextToSpeech/43ed481128248aaf6a975bf28cbc71b8dfa8c9af/assets/whiteGlossBackground.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 13 | 23 | 24 | 29 | 30 | 31 | 32 | 33 | 34 |48 | Offline Text To Speech is now available as a browser extension! 49 |
50 |51 | Download it here 54 |
55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 102 | 103 |