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
公式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"
    ]
}