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