Netflix Subtitles Reader

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

Netflix Subtitles Reader란 무엇입니까?

Netflix Subtitles Reader은(는) meetul에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Netflix Subtitles Reader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Netflix Subtitles Reader Netflix Subtitles Reader
ID daijeojjgpfjnmkkpfmmkhhlcigoihfm
공식 URL https://chromewebstore.google.com/detail/netflix-subtitles-reader/daijeojjgpfjnmkkpfmmkhhlcigoihfm
설명 Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.
파일 크기 77.04 KB
설치 횟수 529
현재 버전 2.1
최근 업데이트 2023-10-07
출시 날짜 2019-08-07
평점 3.53/5 총 17 개의 평점
개발자 meetul
이메일 [email protected]
결제 유형 free
지원되는 언어 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
}