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”。

擴展截圖

screenshot
screenshot
screenshot

下載LNMTL-TTS擴展crx文件

下載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
官方網址 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"
    ]
}