Netflix Subtitles Reader

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

Netflix Subtitles Reader là gì?

Netflix Subtitles Reader là một tiện ích mở rộng Chrome được phát triển bởi meetul, và tính năng chính của nó là "Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netflix Subtitles Reader

Tải xuống các tệp mở rộng Netflix Subtitles Reader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netflix Subtitles Reader Netflix Subtitles Reader
ID daijeojjgpfjnmkkpfmmkhhlcigoihfm
URL Chính Thức https://chromewebstore.google.com/detail/netflix-subtitles-reader/daijeojjgpfjnmkkpfmmkhhlcigoihfm
Mô tả Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.
Kích Thước Tệp 77.04 KB
Số Lần Cài Đặt 529
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2023-10-07
Ngày Phát Hành 2019-08-07
Đánh Giá 3.53/5 Tổng số 17 Đánh Giá
Nhà Phát Triển meetul
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}