LNMTL-TTS

This extension adds TTS functionality for the LNMTL website

Cos'è LNMTL-TTS?

LNMTL-TTS è un'estensione di Chrome sviluppata da Haoyu, e la sua funzione principale è "This extension adds TTS functionality for the LNMTL website".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione LNMTL-TTS

Scarica i file di estensione LNMTL-TTS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome LNMTL-TTS LNMTL-TTS
ID ffiilpkammlfoicldaofmipfdbalapdc
URL Ufficiale https://chrome.google.com/webstore/detail/lnmtl-tts/ffiilpkammlfoicldaofmipfdbalapdc
Descrizione This extension adds TTS functionality for the LNMTL website
Dimensione del File 20.44 KB
Conteggio Installazioni 41
Versione Corrente 0.1.5
Ultimo Aggiornamento 2017-05-10
Data di Pubblicazione 2017-05-10
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Haoyu
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/CryoSkyd/LNMTL-Chinese-TTS
URL della Pagina di Aiuto https://github.com/CryoSkyd/LNMTL-Chinese-TTS
Lingue Supportate 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"
    ]
}