NRK TV Language Learning Subtitles

Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature

NRK TV Language Learning Subtitles란 무엇입니까?

NRK TV Language Learning Subtitles은(는) DeeFrancois에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

NRK TV Language Learning Subtitles 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        How to use:
- Turn on the subtitles the way you usually would
- Activate your browser's auto-translator by right clicking the page and choosing "Translate to English"(or whichever your native language is) 

This is a big part of my language learning process so I figured I'd make this public since other people might find it as helpful as I do. 

I prefer this to be a simple extension but feel free to email me if you think there are any features I need to add. Or you can just pm me on Reddit at /u/DuhMeTreeUs                    

확장 프로그램 기본 정보

이름 NRK TV Language Learning Subtitles NRK TV Language Learning Subtitles
ID lmjfcijpnghdkpnoakgljodpjnimbakp
공식 URL https://chromewebstore.google.com/detail/nrk-tv-language-learning/lmjfcijpnghdkpnoakgljodpjnimbakp
설명 Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature
파일 크기 79.8 KB
설치 횟수 278
현재 버전 1.2
최근 업데이트 2021-08-20
출시 날짜 2021-08-03
평점 5.00/5 총 2 개의 평점
개발자 DeeFrancois
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/DeeFrancois/nrktv-language-learning-subtitles#readme
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NRK TV Language Learning Subtitles",
    "description": "Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature",
    "version": "1.2",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/smallericon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tv.nrk.no\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/browser_action_icon.png",
        "default_popup": "popup.html"
    }
}