Sponsor Skipper

Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.

Cos'è Sponsor Skipper?

Sponsor Skipper è un'estensione di Chrome sviluppata da https://zackbanack.com, e la sua funzione principale è "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sponsor Skipper

Scarica i file di estensione Sponsor Skipper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.

*Notes:*
- This extension requires use of YouTube closed captions to work
- Tab must be in focus

How it works:
- Ever x seconds, the extension will read the video captions
- If a trigger word is found in close proximity to a form of the word "sponsor", then we enter into a sponsored segment
- While in a sponsored segment, if the trigger word is re-encountered or we encounter a word from the in-ad list, keep skimming through the video

GitHub: https://github.com/zbanack/youtube-sponsor-skipper/                    

Informazioni di Base sull'Estensione

Nome Sponsor Skipper Sponsor Skipper
ID jfdipdnjgckbpkomodlcfhmkencihepc
URL Ufficiale https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc
Descrizione Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
Dimensione del File 20.04 KB
Conteggio Installazioni 232
Versione Corrente 1.1
Ultimo Aggiornamento 2019-11-26
Data di Pubblicazione 2019-11-25
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore https://zackbanack.com
Tipo di Pagamento free
Sito Web dell'Estensione https://www.zackbanack.com
URL della Pagina di Aiuto https://www.paypal.me/zackbanack
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sponsor Skipper",
    "short_name": "Skipper",
    "description": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "32": "\/images\/icons-32.png",
        "192": "\/images\/icons-192.png",
        "512": "\/images\/icons-512.png"
    },
    "browser_action": {
        "default_title": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
        "default_icon": "\/images\/icons-32.png",
        "default_popup": "index.html"
    },
    "manifest_version": 2
}