Netflix Skipper
Automatically skip Netflix intros, recaps, and next episode prompts.
Netflix Skipper란 무엇입니까?
Netflix Skipper은(는) Ran Ribenzaft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically skip Netflix intros, recaps, and next episode prompts."입니다.
확장 프로그램 스크린샷
Netflix Skipper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automatically skip Netflix intros, recaps, and next episode prompts. Don't waste any more time waiting or clicking on intros, recaps, and next episode buttons. Once the extension is installed, reload or open a Netflix Tab, and it will work automatically. Through the popup, you can configure which events (intros, recaps, and next episode) you would like to skip. This extension supports ALL Netflix languages! GitHub repo: https://github.com/ranrib/netflix-skipper
확장 프로그램 기본 정보
이름 | Netflix Skipper |
ID | lgmpgoepilkhieepoliajnandndkffab |
공식 URL | https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab |
설명 | Automatically skip Netflix intros, recaps, and next episode prompts. |
파일 크기 | 147 KB |
설치 횟수 | 3,415 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-01-27 |
출시 날짜 | 2022-01-27 |
평점 | 5.00/5 총 9 개의 평점 |
개발자 | Ran Ribenzaft |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ranrib/netflix-skipper |
도움말 페이지 URL | https://github.com/ranrib/netflix-skipper |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Skipper", "description": "Automatically skip Netflix intros, recaps, and next episode prompts.", "author": "Ran Ribenzaft", "version": "1.0", "manifest_version": 3, "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", "default_icon": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } }, "icons": { "16": "images\/netflix-skipper-16.png", "32": "images\/netflix-skipper-32.png", "48": "images\/netflix-skipper-48.png", "128": "images\/netflix-skipper-128.png" } } |