ComfyFlix

ComfyFlix clicks the count down timer between episodes on Netflix for you. No Setup needed.

ComfyFlix란 무엇입니까?

ComfyFlix은(는) M. Alex Boyd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ComfyFlix clicks the count down timer between episodes on Netflix for you. No Setup needed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        # Updated 5/26/2020

## 2020 UPDATES!!


## ComfyFlix skips the countdown timer between episodes on Netflix. No Setup needed, just install and go to Netflix!

### Prevents the "Are you still watching?" Message!

 Super comfortable, no need to get up!


# 2020 Updates
- Reduced permissions to only netflix.com
- Only click seamless-button, still working emulated click.

# Late February Updates

- Fixed a bug where skipping the intro of shows would sometimes pause the show.

# Early June Updates
- Temporary disabled intro skipping after many reports of causing pausing.

# Early August Updates
- Reenabled intro skipping with hopefully safer skipping mechanism.




ComfyFlix is an extension built off the idea of Flix Assist by Josk Kirk (josh-kirk.com).                    

확장 프로그램 기본 정보

이름 ComfyFlix ComfyFlix
ID ddnipedkkjbiclaomlalefpeljjamhma
공식 URL https://chromewebstore.google.com/detail/comfyflix/ddnipedkkjbiclaomlalefpeljjamhma
설명 ComfyFlix clicks the count down timer between episodes on Netflix for you. No Setup needed.
파일 크기 14.86 KB
설치 횟수 1,044
현재 버전 4.0.0
최근 업데이트 2020-05-28
출시 날짜 2020-05-27
평점 2.82/5 총 17 개의 평점
개발자 M. Alex Boyd
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/malexanderboyd/ComfyFlix
도움말 페이지 URL https://github.com/malexanderboyd/ComfyFlix
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ComfyFlix",
    "version": "4.0.0",
    "manifest_version": 2,
    "description": "ComfyFlix clicks the count down timer between episodes on Netflix for you. No Setup needed.",
    "homepage_url": "https:\/\/github.com\/malexanderboyd\/ComfyFlix",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options\/index.html",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "ComfyFlix",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "https:\/\/www.netflix.com\/*",
        "http:\/\/www.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.netflix.com\/*",
                "https:\/\/www.netflix.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}