Netflix Subtitles Reader

Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.

Cos'è Netflix Subtitles Reader?

Netflix Subtitles Reader è un'estensione di Chrome sviluppata da meetul, e la sua funzione principale è "Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Netflix Subtitles Reader

Scarica i file di estensione Netflix Subtitles Reader 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

                        To use the extension, you need to have an active Netflix subscription.

Remember the times when we watch foreign-language content (those amazing Korean Tv Series) on Netflix, however, we have to stick our eyes on the subtitles instead of the video itself?

Not anymore. Netflix Subtitles Reader converts those subtitles using Text-to-speech engine and announces them out loud. You may now continue your office work on one monitor while watching a foreign tv series on another monitor without losing any details of the show and without an excessive focus on the subtitles.

WHAT DOES IT DO?
At Netflix, Viki, Youtube and Hotstar, it reads subtitles out loud using text to speech. It also enables to translate Youtube video in your language.

USAGE:
1) Play any foreign content on Netflix
2) Enable subtitles in English (or a language of your choice)
3) Click on the icon of this extension, select the same language as above and click on 'Start'
That's it.

To translate any youtube video:
1) Play the youtube video
2) In subtitles, select "Auto Translate" and translate to your language
3) Click on the icon of this extension, select the same language as above and click on 'Start'
That's it.

To stop the audio subtitles, click on the extension's icon and click on 'Stop'.

TIP:
Set the volume of Netflix to 20% and volume of system to 100%. Then adjust both until the audio volumes are comfortable as per your preference.

------
Update: 30-Sep-2023
- Added support for Viki.com
- Added support for Hotstar.com
- Fixed a bug that caused all-capital letters in a word to spell instead of speaking it.
- Youtube videos in foreign language may now be translated to your language
------
Update: 24-June-2023
- Added Youtube - Extension now works on youtube.com as well
- Speed Controls - buttons to increase or decrease the speed of the speech
- Language - option to change the language
- Voice - option to change the voice


------
FAQ:

Q. It does not work on my browser
> The extension is meant for Google Chrome browser and has been optimized to use on Windows Machine. It may not work on other browsers (such as Edge) or other OS (such as Mac)

Q. There are delays and it stutters or repeats things.
> The extension uses your system's inbuilt text to speech APIs. If it is stuttering, your system might be getting a lot of interrupts due to some issues in your system. There is nothing at the extension's layer that we could do to solve this. Please try this on another system or try to debug what hardware or software is causing the underlying interrupts.

Q. The languages and voices do not load on my system
> The extension uses whatever languages and voices are installed in your system's/browser's text-to-speech engine. If languages or voices are missing, try searching the web on how to install them for your os/browser.

Q. It does not read diacritics.
> Please make sure the correct language is selected in the extension. If English is selected, it has been programmed to ignore diacritics, as english does not have diacritics.

NOTE:
This is a free, ad-free, no-signup-required, totally barrier-free, free extension. If there is something you don't like in the extension or if you would like to request a feature that is not already present, please use the Support tab instead of leaving a negative rating.                    

Informazioni di Base sull'Estensione

Nome Netflix Subtitles Reader Netflix Subtitles Reader
ID daijeojjgpfjnmkkpfmmkhhlcigoihfm
URL Ufficiale https://chromewebstore.google.com/detail/netflix-subtitles-reader/daijeojjgpfjnmkkpfmmkhhlcigoihfm
Descrizione Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.
Dimensione del File 77.04 KB
Conteggio Installazioni 529
Versione Corrente 2.1
Ultimo Aggiornamento 2023-10-07
Data di Pubblicazione 2019-08-07
Valutazione 3.53/5 Totale 17 Valutazioni
Sviluppatore meetul
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Subtitles Reader",
    "version": "2.1",
    "description": "Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.moviesjoy.to\/*",
                "https:\/\/*.primevideo.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.animixplay.to\/*",
                "https:\/\/*.viki.com\/*",
                "https:\/\/*.hotstar.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "manifest_version": 2
}