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”。

擴展截圖

screenshot

下載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 Binge Stream
ID heoccpcipeedednknenbgenacjomlcbp
官方網址 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"
    }
}