OpenSubtitles for Netflix

Load OpenSubtitles subtitles on Netflix

OpenSubtitles for Netflix란 무엇입니까?

OpenSubtitles for Netflix은(는) OpenSubtitles for Netflix에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Load OpenSubtitles subtitles on Netflix"입니다.

확장 프로그램 스크린샷

screenshot

OpenSubtitles for Netflix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easily find and download subtitles for Netflix in any language. Just click the icon or press D while watching a video and follow the instructions.                    

확장 프로그램 기본 정보

이름 OpenSubtitles for Netflix OpenSubtitles for Netflix
ID kcdnnmhalbjbccempnhabdaeilabmdop
공식 URL https://chromewebstore.google.com/detail/opensubtitles-for-netflix/kcdnnmhalbjbccempnhabdaeilabmdop
설명 Load OpenSubtitles subtitles on Netflix
파일 크기 485 KB
설치 횟수 3,364
현재 버전 1.20
최근 업데이트 2022-01-17
출시 날짜 2020-05-20
평점 3.70/5 총 10 개의 평점
개발자 OpenSubtitles for Netflix
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenSubtitles for Netflix",
    "version": "1.20",
    "description": "Load OpenSubtitles subtitles on Netflix",
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src http:\/\/localhost:8080; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "player-payload.js"
            ],
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo-16.png",
        "48": "logo-48.png",
        "128": "logo-128.png"
    },
    "manifest_version": 3,
    "action": [],
    "host_permissions": [
        "https:\/\/api.opensubtitles.org\/*"
    ]
}