YouTube Intro Skipper

A Chrome extension for starting YouTube videos at predefined start time

Cos'è YouTube Intro Skipper?

YouTube Intro Skipper è un'estensione di Chrome sviluppata da hcwtam, e la sua funzione principale è "A Chrome extension for starting YouTube videos at predefined start time".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Intro Skipper

Scarica i file di estensione YouTube Intro 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

                        AdBlock is, without a doubt, one of the best things that have happened to mankind. What if you also want to skip the usual intro/ads in the beginning videos of your favourite channels? Yes, you can fast forward manually, but it can get tedious.

We proudly present, Youtube Skipper. Configure target channels, set start time, forget about it. Don't give me excuses, GIVE ME RESULTS!                    

Informazioni di Base sull'Estensione

Nome YouTube Intro Skipper YouTube Intro Skipper
ID bkidjicmopimhpebecifcejncihnfgjj
URL Ufficiale https://chromewebstore.google.com/detail/youtube-intro-skipper/bkidjicmopimhpebecifcejncihnfgjj
Descrizione A Chrome extension for starting YouTube videos at predefined start time
Dimensione del File 18.59 KB
Conteggio Installazioni 196
Versione Corrente 0.1.0
Ultimo Aggiornamento 2022-11-13
Data di Pubblicazione 2022-11-13
Valutazione 3.86/5 Totale 7 Valutazioni
Sviluppatore hcwtam
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Intro Skipper",
    "description": "A Chrome extension for starting YouTube videos at predefined start time",
    "version": "0.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    }
}