LNMTL-TTS
This extension adds TTS functionality for the LNMTL website
What is LNMTL-TTS?
LNMTL-TTS is a Chrome extension developed by Haoyu, and its main feature is "This extension adds TTS functionality for the LNMTL website".
Extension Screenshots
Download LNMTL-TTS Extension CRX File
Download LNMTL-TTS extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension is meant for the LNMTL novel translation site. It adds a button for quick TTS (text-to-speech) for Chinese sentences. The purpose is to allow those whom understand Chinese well, but may not be able to read Chinese to enjoy the raw forms of those novels. The extension is best used with the chinese text enabled on LNMTL (the "ZN" button) Feel free to help out with the project: https://github.com/CryoSkyd/LNMTL-Chinese-TTS -------------------------------------- Update 0.1.5 - Added piaotian.com support -------------------------------------- Update 0.1.4 - Fixed occasional repeating sentences. -------------------------------------- Update 0.1.2 - Added continuous playback capability. You can now have it read through the entire article. - Added simple UI buttons for continuous playback. When I get the time, I'll look into making the UI look prettier or hideable
Extension Basic Information
Name | |
ID | ffiilpkammlfoicldaofmipfdbalapdc |
Official URL | https://chrome.google.com/webstore/detail/lnmtl-tts/ffiilpkammlfoicldaofmipfdbalapdc |
Description | This extension adds TTS functionality for the LNMTL website |
File Size | 20.44 KB |
Installation Count | 41 |
Current Version | 0.1.5 |
Last Updated | 2017-05-10 |
Publish Date | 2017-05-10 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Haoyu |
Payment Type | free |
Extension Website | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
Help Page URL | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LNMTL-TTS", "description": "This extension adds TTS functionality for the LNMTL website", "version": "0.1.5", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "tts", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/lnmtl.com\/*", "http:\/\/www.piaotian.com\/*" ], "js": [ "ttsPlayer.js", "content.js" ] } ], "web_accessible_resources": [ "play_icon.png" ] } |