Randflix - Random Episodes For Netflix

Adds a shuffle button to play a random episode of a given show.

Randflix - Random Episodes For Netflix란 무엇입니까?

Randflix - Random Episodes For Netflix은(는) Susan Chen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a shuffle button to play a random episode of a given show."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Randflix - Random Episodes For Netflix 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A handy chrome extension for those who have seen their favourite shows on Netflix way too many times. Randflix allows you to randomize episode playback of a given TV show.

When choosing an episode becomes arduous, just turn to Randflix to make the choice for you!

https://github.com/bzvikler/netflix-randomizer                    

확장 프로그램 기본 정보

이름 Randflix - Random Episodes For Netflix Randflix - Random Episodes For Netflix
ID enjakkkpkgpcnjbmagjgkccljfimgbhh
공식 URL https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh
설명 Adds a shuffle button to play a random episode of a given show.
파일 크기 48.98 KB
설치 횟수 179
현재 버전 1.2
최근 업데이트 2020-03-27
출시 날짜 2020-03-27
평점 3.00/5 총 4 개의 평점
개발자 Susan Chen
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/bzvikler/netflix-randomizer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Randflix - Random Episodes For Netflix",
    "version": "1.2",
    "description": "Adds a shuffle button to play a random episode of a given show.",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ]
}