Skipfast intro, recap, next and more

Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.

Skipfast intro, recap, next and more란 무엇입니까?

Skipfast intro, recap, next and more은(는) Michaël Faurel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts."입니다.

확장 프로그램 스크린샷

screenshot

Skipfast intro, recap, next and more 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automatically skip Intro, Recaps and Next episode for Netflix, AppleTV, Prime Video and Disney plus prompts.

IMPORTANT: you need to refresh the Netflix, AppleTV, Prime Video or Disney plus page only once after installing the extension. It's not dependent on language.

You can check the code here : https://github.com/mfaurel/skipfast
You can open an issue or send a pull request if you find any bug.

If you want to buy me a coffee, here's my paypal : https://paypal.me/MichaelFaurel                    

확장 프로그램 기본 정보

이름 Skipfast intro, recap, next and more Skipfast intro, recap, next and more
ID gjaffkjplmcnjonnmoagianaeacjfipj
공식 URL https://chromewebstore.google.com/detail/skipfast-intro-recap-next/gjaffkjplmcnjonnmoagianaeacjfipj
설명 Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.
파일 크기 351 KB
설치 횟수 121
현재 버전 2.0.0
최근 업데이트 2023-12-04
출시 날짜 2022-03-13
평점 5.00/5 총 5 개의 평점
개발자 Michaël Faurel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mfaurel/skipfast
도움말 페이지 URL https://github.com/mfaurel/skipfast/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skipfast intro, recap, next and more",
    "description": "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.",
    "author": "Micha\u00ebl Faurel",
    "version": "2.0.0",
    "manifest_version": 3,
    "icons": {
        "128": "src\/assets\/icon128x128_2.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "src\/popup.html"
    }
}