LNMTL-TTS
This extension adds TTS functionality for the LNMTL website
Co je LNMTL-TTS?
LNMTL-TTS je rozšíření Chrome vyvinuté Haoyu, a jeho hlavní funkcí je „This extension adds TTS functionality for the LNMTL website“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LNMTL-TTS
Stáhněte si soubory rozšíření LNMTL-TTS ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | ffiilpkammlfoicldaofmipfdbalapdc |
Oficiální URL | https://chrome.google.com/webstore/detail/lnmtl-tts/ffiilpkammlfoicldaofmipfdbalapdc |
Popis | This extension adds TTS functionality for the LNMTL website |
Velikost souboru | 20.44 KB |
Počet instalací | 41 |
Aktuální Verze | 0.1.5 |
Poslední Aktualizace | 2017-05-10 |
Datum Vydání | 2017-05-10 |
Hodnocení | 3.00/5 Celkem 2 Hodnocení |
Vývojář | Haoyu |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
URL Stránky Nápovědy | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
Podporované Jazyky | 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" ] } |