Netflix Radio

Add television channels to Netflix

Netflix Radio란 무엇입니까?

Netflix Radio은(는) goatmobile에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add television channels to Netflix"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        These days, the number of shows and movies available on streaming services is astronomical! Deciding on a specific one is a monumental task, leading to hours wasted scrolling endlessly through the myriad of options.

Netflix Radio brings a solution: simply choose your channel of choice and before you know it you will be put in the middle of a show or movie. If you don't like it, hit the channel up or down buttons to navigate to the next or previous channel, respectively.

Netflix Radio simplifies the watching process by disabling the ability to seek or pause, simulating the experience of a real network TV channel (with no commercials!).

Watch with friends! All Netflix Radio installations follow the same programming schedule, so each of your channels play the same thing as everyone else's.

Like what you're watching and want some more control? Delete 'radio_channel=...' from the URL and refresh, then you will find yourself on the typical Netflix UI.

Changelog:
1.3 - a Netflix update broke everything, make it work again
1.2.1 - fix bug where channels were missing
1.2 - added more channels, made show distribution more fair, fixed channel scrolling on browse page
1.1.1 - add ability to dismiss guide by clicking somewhere else
1.1 - add guide channel
1.0.2 - fix bug where space bar would still pause                    

확장 프로그램 기본 정보

이름 Netflix Radio Netflix Radio
ID gbhbfbfeplnegfdpjopediaglchcahaa
공식 URL https://chrome.google.com/webstore/detail/netflix-radio/gbhbfbfeplnegfdpjopediaglchcahaa
설명 Add television channels to Netflix
파일 크기 670 KB
설치 횟수 28
현재 버전 1.3
최근 업데이트 2021-01-22
출시 날짜 2020-10-26
평점 2.50/5 총 2 개의 평점
개발자 goatmobile
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Radio",
    "short_name": "Netflix Radio",
    "description": "Add television channels to Netflix",
    "version": "1.3",
    "author": "goatmobile",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/netflix.com\/*",
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "library.js",
                "channels.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.jpg"
    ],
    "permissions": [
        "activeTab",
        "https:\/\/netflix.com\/*"
    ]
}