Binge Stream
Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up
Binge Stream là gì?
Binge Stream là một tiện ích mở rộng Chrome được phát triển bởi Sebastian Weigand, và tính năng chính của nó là "Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Binge Stream
Tải xuống các tệp mở rộng Binge Stream dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Binge Stream |
ID | heoccpcipeedednknenbgenacjomlcbp |
URL Chính Thức | https://chromewebstore.google.com/detail/binge-stream/heoccpcipeedednknenbgenacjomlcbp |
Mô tả | Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up |
Kích Thước Tệp | 278 KB |
Số Lần Cài Đặt | 16 |
Phiên Bản Hiện Tại | 23.11.12.2130 |
Cập Nhật Lần Cuối | 2023-11-12 |
Ngày Phát Hành | 2020-10-30 |
Nhà Phát Triển | Sebastian Weigand |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/s-weigand/binge-stream |
URL Trang Trợ Giúp | https://github.com/s-weigand/binge-stream/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |