LNMTL-TTS
This extension adds TTS functionality for the LNMTL website
LNMTL-TTS란 무엇입니까?
LNMTL-TTS은(는) Haoyu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds TTS functionality for the LNMTL website"입니다.
확장 프로그램 스크린샷
LNMTL-TTS 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
ID | ffiilpkammlfoicldaofmipfdbalapdc |
공식 URL | https://chrome.google.com/webstore/detail/lnmtl-tts/ffiilpkammlfoicldaofmipfdbalapdc |
설명 | This extension adds TTS functionality for the LNMTL website |
파일 크기 | 20.44 KB |
설치 횟수 | 41 |
현재 버전 | 0.1.5 |
최근 업데이트 | 2017-05-10 |
출시 날짜 | 2017-05-10 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Haoyu |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
도움말 페이지 URL | https://github.com/CryoSkyd/LNMTL-Chinese-TTS |
지원되는 언어 | 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" ] } |