Binge Stream

Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up

Qu'est-ce que Binge Stream ?

Binge Stream est une extension Chrome développée par Sebastian Weigand, et sa fonction principale est "Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Binge Stream

Téléchargez les fichiers d'extension Binge Stream au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Binge Stream Binge Stream
ID heoccpcipeedednknenbgenacjomlcbp
URL Officiel https://chromewebstore.google.com/detail/binge-stream/heoccpcipeedednknenbgenacjomlcbp
Description Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up
Taille du Fichier 278 KB
Nombre d'Installations 16
Version Actuelle 23.11.12.2130
Dernière Mise à Jour 2023-11-12
Date de Publication 2020-10-30
Développeur Sebastian Weigand
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/s-weigand/binge-stream
URL de la Page d'Aide https://github.com/s-weigand/binge-stream/issues
Langues Prises en Charge 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"
    }
}