Netflix Multi-Subtitles

Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously.

Netflix Multi-Subtitles란 무엇입니까?

Netflix Multi-Subtitles은(는) josef.rukavicka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously."입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        "Netflix Multi Subtitles" is a Chrome extension that allows you to watch videos on Netflix with several sets of subtitles simultaneously; the number of simultaneous sets is not limited.
It is a great facility especially for language learners.

See https://www.youtube.com/watch?v=zpJNe0zE2uQ

There are following features:
All subtitles are loaded from Netflix, you don't need to upload your own files.
You have to select the subtitles in the Netflix menu in order to load these subtitles into the extension "Netflix Multi Subtitles"
You select one after another all the languages that you want to watch simultaneously. 

Once loaded in "Netflix Multi Subtitles" you can: 
- manage the font size and color
- you can switch off/on the text stroke to facilitate the readability of the subtitles in case the color of the background is similar to the color of the subtitles
- change the position by simple drag and drop (in a comfortable manner you determine the layout of all subtitles on the screen)
- hide/show every single set of subtitles
- export all the subtitles (with begin and end positions in time) into a text window (so that you can easily copy and paste the texts into  a dictionary)
- fast rewind on pressing the up-arrow key (the playing speed is 5 times more than normal speed)
- normal playing speed on pressing the down-arrow key
- show stopwatch: it displays the remaining time to the time when another subtitles appear, by default turned off. It is targeted especially to those who want to learn language without having to watch the longer parts of the movie without speaking. In case of a longer time, the user can press the up-arrow key to activate fast rewind to the next subtitle. The fast rewind changes to the normal playing speed if next subtitles are about to appear in less than 2 seconds. The stopwatch works with loaded subtitles in the chrome extension "Netflix Multi Subtitles", not with the subtitles displayed by Netflix. 

Some languages cannot be loaded into "Netflix Multi Subtitles", because they are not transferred in a text format (for example Russian, Japanese, Chinese, ..). It means that you cannot manage these subtitles by the extension "Netflix Multi Subtitles", however it is still possible to turn on/off them in the Netflix menu.
Hence you watch simultaneously one of those "non text" subtitles with any number of other "text" subtitles (English, French, German, Italian, ...)

======================================================================
New Features in version 0.0.0.9:
- adding static text: Use F11 for full-screen view.
- removing an advertisement link

======================================================================
New Features in version 0.0.0.8:
- removing bug from manifest.json

======================================================================
New Features in version 0.0.0.7:
- adding text stroke to facilitate the readability of the subtitles in case the color of the background is similar to the color of the subtitles
- adding an optional advertisement to the bottom of the menu

======================================================================
New Features in version 0.0.0.6:
- bug fix in the format of the displayed numbers

======================================================================
New Features in version 0.0.0.5:
- handling expired trial periods
- format of the displayed numbers

======================================================================
New Features in version 0.0.0.4:
- technical bug fix with processing response from googleapis

======================================================================
New Features in version 0.0.0.3:
- fast rewind on pressing the up-arrow key
- normal playing speed on pressing the down-arrow key
- if "Show watchstop" is checked, then fast rewind changes automatically to normal playing speed if next subtitles are about to appear in less than 2 seconds
- added check for expired trial license

======================================================================
New Features in version 0.0.0.2:
- possibility to define color of subtitles
- added the option extra small font size (12 px) 
- show stopwatch option, see above for more details

Bug fix:
- correct displaying of subtitles for multiple records with the same display time

A technical change:
- manifest permissions were restricted to netflix.com and nflxvideo.net                    

확장 프로그램 기본 정보

이름 Netflix Multi-Subtitles Netflix Multi-Subtitles
ID nbefemlknofkcmjaacjbfebcodllpncj
공식 URL https://chromewebstore.google.com/detail/netflix-multi-subtitles/nbefemlknofkcmjaacjbfebcodllpncj
설명 Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously.
파일 크기 118 KB
설치 횟수 4,926
현재 버전 0.0.0.9
최근 업데이트 2020-10-03
출시 날짜 2019-06-11
평점 3.46/5 총 68 개의 평점
개발자 josef.rukavicka
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Multi-Subtitles",
    "version": "0.0.0.9",
    "description": "Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously.",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "identity",
        "https:\/\/*.netflix.com\/*",
        "https:\/\/*.nflxvideo.net\/*",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "bgp_m.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "inject_m.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "web_accessible_resources": [
        "inject.css",
        "shadow.css"
    ],
    "oauth2": {
        "client_id": "561793132704-h1m6tavr37b0jd1sbtbg6sghuldsejuh.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly"
        ]
    }
}