Binge Stream

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

Binge Stream क्या है?

Binge Stream Sebastian Weigand द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Binge Stream एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}