FlixSubs - Subtitles Plugin For Netflix

Simple plugin that adds subtitles to movies and series you watch.

FlixSubs - Subtitles Plugin For Netflix란 무엇입니까?

FlixSubs - Subtitles Plugin For Netflix은(는) flixsubs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple plugin that adds subtitles to movies and series you watch."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

FlixSubs - Subtitles Plugin For Netflix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Flixsubs extension simply detects what is watched on Netflix's and adds your preferable language subtitles.                    

확장 프로그램 기본 정보

이름 FlixSubs - Subtitles Plugin For Netflix FlixSubs - Subtitles Plugin For Netflix
ID llcjbplmeedpplcgabakfhdikbgmajna
공식 URL https://chromewebstore.google.com/detail/flixsubs-subtitles-plugin/llcjbplmeedpplcgabakfhdikbgmajna
설명 Simple plugin that adds subtitles to movies and series you watch.
파일 크기 107 KB
설치 횟수 610
현재 버전 2.2
최근 업데이트 2016-05-07
출시 날짜 2016-05-07
평점 1.83/5 총 12 개의 평점
개발자 flixsubs
결제 유형 free
확장 프로그램 웹 사이트 http://flixsubs.com/
도움말 페이지 URL https://flixsub.groovehq.com/help_center
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FlixSubs - Subtitles Plugin For Netflix",
    "description": "Simple plugin that adds subtitles to movies and series you watch.",
    "version": "2.2",
    "browser_action": {
        "default_icon": "movies.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "movies.png"
    },
    "permissions": [
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/watch\/*"
            ],
            "js": [
                "scripts.js",
                "p.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}