NRK TV Dual Subtitles

Provides side-by-side subtitle translations for tv.nrk.no

NRK TV Dual Subtitles란 무엇입니까?

NRK TV Dual Subtitles은(는) rioam2에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides side-by-side subtitle translations for tv.nrk.no"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Show side-by-side dual-language subtitles on the Norwegian Broadcasting Corporation online streaming service: NRKTV (https://tv.nrk.no). Subtitles are translated in real-time using the Google Translate API and displayed to the side of existing Norwegian subtitles.

This extension is dedicated to new Norwegian language learners who want to expose themselves to new vocabulary and grammar.                    

확장 프로그램 기본 정보

이름 NRK TV Dual Subtitles NRK TV Dual Subtitles
ID nhgbnfkfpbfifgjbnmgdlpeimjilkkhn
공식 URL https://chromewebstore.google.com/detail/nrk-tv-dual-subtitles/nhgbnfkfpbfifgjbnmgdlpeimjilkkhn
설명 Provides side-by-side subtitle translations for tv.nrk.no
파일 크기 16.22 KB
설치 횟수 631
현재 버전 1.1.3
최근 업데이트 2022-02-24
출시 날짜 2021-03-05
평점 4.80/5 총 5 개의 평점
개발자 rioam2
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rioam2/nrktv-dual-subs
도움말 페이지 URL https://github.com/rioam2/nrktv-dual-subs/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "rioam2",
    "name": "NRK TV Dual Subtitles",
    "version": "1.1.3",
    "manifest_version": 2,
    "description": "Provides side-by-side subtitle translations for tv.nrk.no",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tv.nrk.no\/*",
                "*:\/\/clients5.google.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self'"
}