Transflixed

Add translations to netflix subtitles

Transflixed란 무엇입니까?

Transflixed은(는) http://transflixed.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add translations to netflix subtitles"입니다.

확장 프로그램 스크린샷

screenshot

Transflixed 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Translate existing subtitles in Netflix to give dual language.  This may be useful in learning a language.  

Currently only German to English.  

Usage:
Install the extension
Turn it on (click the icon and click the power button to get it to turn red)
Log into netflix.com and play a video which has subtitles
Wait for the translation to complete (you should see a notification displaying progress).  Try hitting refresh if this doesn't happen...

Not officially supported by anyone.  Not well tested.  

Code on GitHub: https://github.com/hajamie/transflixed                    

확장 프로그램 기본 정보

이름 Transflixed Transflixed
ID oidimfcfbfnfodkclkaoeaobgnpbeopp
공식 URL https://chrome.google.com/webstore/detail/transflixed/oidimfcfbfnfodkclkaoeaobgnpbeopp
설명 Add translations to netflix subtitles
파일 크기 124 KB
설치 횟수 276
현재 버전 0.0.0.1
최근 업데이트 2018-04-10
출시 날짜 2018-04-10
평점 1.00/5 총 1 개의 평점
개발자 http://transflixed.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://transflixed.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Transflixed",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "description": "Add translations to netflix subtitles",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "transfixed.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "images\/iconOff19.png",
            "38": "images\/iconOff38.png"
        }
    },
    "web_accessible_resources": [
        "content.js",
        "worker.js",
        "style.css"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "notifications"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.netflix.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}