LNMTL-TTS
This extension adds TTS functionality for the LNMTL website
O que é LNMTL-TTS?
LNMTL-TTS é uma extensão do Chrome desenvolvida por Haoyu, e sua principal característica é "This extension adds TTS functionality for the LNMTL website".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão LNMTL-TTS
Baixe arquivos de extensão LNMTL-TTS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | ffiilpkammlfoicldaofmipfdbalapdc |
URL Oficial | https://chrome.google.com/webstore/detail/lnmtl-tts/ffiilpkammlfoicldaofmipfdbalapdc |
Descrição | This extension adds TTS functionality for the LNMTL website |
Tamanho do Arquivo | 20.44 KB |
Contagem de Instalações | 41 |
Versão Atual | 0.1.5 |
Última Atualização | 2017-05-10 |
Data de Publicação | 2017-05-10 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Haoyu |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
URL da Página de Ajuda | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
Idiomas Suportados | 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" ] } |