LNMTL-TTS

This extension adds TTS functionality for the LNMTL website

LNMTL-TTSคืออะไร?

LNMTL-TTS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Haoyu และคุณลักษณะหลักของมันคือ "This extension adds TTS functionality for the LNMTL website"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LNMTL-TTS

ดาวน์โหลดไฟล์ส่วนขยาย LNMTL-TTS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LNMTL-TTS LNMTL-TTS
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"
    ]
}