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ファイルをダウンロード
Binge Stream拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } } |