Netflix TV

Turns Netflix into TV mode.

Netflix TV란 무엇입니까?

Netflix TV은(는) Genius and Sons에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turns Netflix into TV mode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Turning Netflix into TV mode is easy! All you have to do is pick series or movies, the genre you'd like and press play! The extension will automagically start playing personalized content for you that matches your search. If you would like to have more granular controls you can create a TV show channel. You get to add all your favorite TV shows, and the extension will start playing a mixed playlist of episodes.

Stop wasting time deciding what to watch, and spend more time watching

Guide:
1. Visit netflix.com
2. Open the extension from top right corner
3. Create your own customized channel

Credits:
This extension is not affiliated with Netflix Inc. Netflix is a trademark of Netflix, Inc.
Photo credits: Roberto Nickson

Support email: [email protected]                    

확장 프로그램 기본 정보

이름 Netflix TV Netflix TV
ID odmgfcepaajjipjjjhijpkhacagdjddo
공식 URL https://chrome.google.com/webstore/detail/netflix-tv/odmgfcepaajjipjjjhijpkhacagdjddo
설명 Turns Netflix into TV mode.
파일 크기 1.36 MB
설치 횟수 970
현재 버전 1.0.1
최근 업데이트 2020-04-03
출시 날짜 2020-04-03
평점 1.50/5 총 2 개의 평점
개발자 Genius and Sons
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix TV",
    "description": "Turns Netflix into TV mode.",
    "version": "1.0.1",
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png"
    },
    "background": {
        "persistent": false,
        "matches": [
            "*:\/\/*.netflix.com\/*"
        ],
        "scripts": [
            "js\/common.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "js\/common.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/*.netflix.com\/*",
        "*:\/\/*.thisisanalphanumeric.xyz\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Netflix TV Settings"
    }
}