Binge Stream
Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up
Binge Stream란 무엇입니까?
Binge Stream은(는) Sebastian Weigand에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up"입니다.
확장 프로그램 스크린샷
Binge Stream 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Why would you want to use this extension? You sat down on your couch or went to bed, binge-watching your favorite show, and then the intro kicks in for the 10th time this evening so you get up and click the skip button? Or you don't want to watch the 5min recap of an episode you just watched? Then this extension is for you. Supported services - Netflix - Amazon Video (Supported Locale ([`DE`, `EN`]) If you find any errors open an issue at github https://github.com/s-weigand/binge-stream/issues
확장 프로그램 기본 정보
이름 | Binge Stream |
ID | heoccpcipeedednknenbgenacjomlcbp |
공식 URL | https://chromewebstore.google.com/detail/binge-stream/heoccpcipeedednknenbgenacjomlcbp |
설명 | Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up |
파일 크기 | 278 KB |
설치 횟수 | 16 |
현재 버전 | 23.11.12.2130 |
최근 업데이트 | 2023-11-12 |
출시 날짜 | 2020-10-30 |
개발자 | Sebastian Weigand |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/s-weigand/binge-stream |
도움말 페이지 URL | https://github.com/s-weigand/binge-stream/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Binge Stream", "version": "23.11.12.2130", "description": "Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up", "homepage_url": "https:\/\/github.com\/s-weigand\/binge-stream", "manifest_version": 3, "minimum_chrome_version": "99", "icons": { "128": "icon.png" }, "permissions": [ "activeTab", "storage" ], "action": { "default_icon": { "128": "icon.png" }, "default_popup": "options\/options.html", "default_title": "Binge-Stream Options" }, "content_scripts": [ { "js": [ "content_scripts\/netflix.js" ], "matches": [ "*:\/\/netflix.com\/**", "*:\/\/*.netflix.com\/**" ] }, { "js": [ "content_scripts\/amazon.js" ], "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/amazon.*\/gp\/video\/**", "*:\/\/*.amazon.*\/gp\/video\/**", "*:\/\/amazon.*\/*\/dp\/**", "*:\/\/*.amazon.*\/*\/dp\/**" ] }, { "js": [ "content_scripts\/youtube.js" ], "matches": [ "*:\/\/www.youtube.com\/**" ] } ], "options_ui": { "page": "options\/options.html" } } |