Practice Flix - Study languages with netflix

Learn, practice another language by watching your favorite series or movies on netflix

Practice Flix - Study languages with netflix란 무엇입니까?

Practice Flix - Study languages with netflix은(는) Marcio Brito에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn, practice another language by watching your favorite series or movies on netflix"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Practice Flix - Study languages with netflix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Improve your skills on your own, effectively and enjoyably, by watching films and series in the language you study.
All features FREE to use!

Netflix can be a great study resource for intermediate and advanced learners, but there are some difficulties (poor subs, no translations, dialogues go by too quickly etc.). This chrome extension gives you superpowers over Netflix that makes learning with films/series more effective and enjoyable. After installation, you will have an additional panel with language learning features when you watch videos on the Netflix website.

• Subtitles are presented simultaneously with a translation. By comparing the translation with the original audio and text, you can assimilate a great deal in a short amount of time. Choose between human and machine translations, or show both.
• The extension gives you enhanced control over playback, allowing you to step through sentences one at a time, and digest phrases at your own pace. Optionally slow down dialogue to x0.80.
• Build your listening comprehension with hundreds of hours of authentic language in context.
• The extension tells you which words are important words for you to learn, and which words can be set aside for later. There's also a pop-up dictionary.

Netflix offers a wide variety of programs for studying major languages (Danish, Dutch, English, French, German, Italian, Norwegian, Portuguese, Spanish, Swedish, Turkish), and a smaller, but still useful selection for less widely spoken languages. 

The pop-up dictionary doesn't currently work with certain languages (Chinese, Japanese, Korean..). Check back soon!

Our extension runs on Google Chrome on desktop and laptop computers running Windows and MacOS. We aren't testing on Chrome OS and Linux currently. Tablets and smartphones are not supported currently. You need an active Netflix subscription to use our extension.                    

확장 프로그램 기본 정보

이름 Practice Flix - Study languages with netflix Practice Flix - Study languages with netflix
ID iolcaopgnkdnfhepkfmgommejjfkmehp
공식 URL https://chrome.google.com/webstore/detail/practice-flix-study-langu/iolcaopgnkdnfhepkfmgommejjfkmehp
설명 Learn, practice another language by watching your favorite series or movies on netflix
파일 크기 930 KB
설치 횟수 523
현재 버전 1.8
최근 업데이트 2019-02-01
출시 날짜 2019-02-01
평점 1.00/5 총 2 개의 평점
개발자 Marcio Brito
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://practiceflix.tk/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Practice Flix - Study languages with netflix",
    "short_name": "PracticeFlix",
    "version": "1.8",
    "description": "Learn, practice another language by watching your favorite series or movies on netflix",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.netflix.com\/*",
        "tabs",
        "activeTab",
        "storage",
        "*:\/\/*.nflxext.com\/*",
        "*:\/\/*.nflxvideo.net\/*"
    ],
    "background": {
        "scripts": [
            "languages.js",
            "global.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "24": "icon24.png",
            "32": "icon32.png",
            "48": "icon48.png"
        },
        "default_title": "Practice Flix",
        "default_popup": "instructions.html"
    },
    "web_accessible_resources": [
        "options.html",
        "instructions.html",
        "propaganda_pt-BR.jpg",
        "propaganda_en-US.jpg"
    ],
    "minimum_chrome_version": "14",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "languages.js",
                "global.js",
                "content_script.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}