DuoTok: watch Netflix to learn languages

Learn languages while watching your favorite TV shows on Netflix

DuoTok: watch Netflix to learn languages란 무엇입니까?

DuoTok: watch Netflix to learn languages은(는) janvi kalra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn languages while watching your favorite TV shows on Netflix"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

DuoTok: watch Netflix to learn languages 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension enables you to learn languages while watching your favorite shows on Netflix! When you open the popup, you can choose what language you would like to learn -- there are 38 different langauges to choose from. When you navigate to any show or movie on Netflix, the subtitles and dubbing for the chosen languages will appear if available, along with the English translation underneath. Further, when you click on a word in the subtitle, the word's definition, romanization (ex: pinyin), part of speech, and an example sentence with that word will show up. You can change the language you are trying to learn at any point using the popup. You can also turn the extension on and off with the toggle on the popup. Finally, you also use Netflix features like slowing down the video to make the learning more accessible. Happy learning!                    

확장 프로그램 기본 정보

이름 DuoTok: watch Netflix to learn languages DuoTok: watch Netflix to learn languages
ID npfjegloebdbeaipmimaphnmagoebmag
공식 URL https://chromewebstore.google.com/detail/duotok-watch-netflix-to-l/npfjegloebdbeaipmimaphnmagoebmag
설명 Learn languages while watching your favorite TV shows on Netflix
파일 크기 152 KB
설치 횟수 147
현재 버전 0.0.8
최근 업데이트 2023-05-22
출시 날짜 2023-04-26
평점 5.00/5 총 1 개의 평점
개발자 janvi kalra
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/janvikalra_
지원되는 언어 en
manifest.json
{
    "background": {
        "service_worker": "service_worker.js"
    },
    "action": {
        "default_title": "DuoTok: watch Netflix to learn languages",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.min.js",
                "prepare.js",
                "angular.min.js",
                "ng-file-model.min.js",
                "utils.js",
                "content_scripts\/word_definitions.js",
                "content_scripts\/on_off.js",
                "content_scripts\/duotok_root.js",
                "content_scripts\/subtitles.js",
                "content_scripts\/openai_queries.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "runAt": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "description": "Learn languages while watching your favorite TV shows on Netflix",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 3,
    "name": "DuoTok: watch Netflix to learn languages",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.8"
}