LNMTL-TTS
This extension adds TTS functionality for the LNMTL website
¿Qué es LNMTL-TTS?
LNMTL-TTS es una extensión de Chrome desarrollada por Haoyu, y su función principal es "This extension adds TTS functionality for the LNMTL website".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión LNMTL-TTS
Descarga archivos de extensión LNMTL-TTS en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | ffiilpkammlfoicldaofmipfdbalapdc |
URL Oficial | https://chrome.google.com/webstore/detail/lnmtl-tts/ffiilpkammlfoicldaofmipfdbalapdc |
Descripción | This extension adds TTS functionality for the LNMTL website |
Tamaño del Archivo | 20.44 KB |
Cantidad de Instalaciones | 41 |
Versión Actual | 0.1.5 |
Última Actualización | 2017-05-10 |
Fecha de Publicación | 2017-05-10 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | Haoyu |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
URL de la Página de Ayuda | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
Idiomas Soportados | 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" ] } |