YouTube Intro Skipper

A Chrome extension for starting YouTube videos at predefined start time

Qu'est-ce que YouTube Intro Skipper ?

YouTube Intro Skipper est une extension Chrome développée par hcwtam, et sa fonction principale est "A Chrome extension for starting YouTube videos at predefined start time".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Intro Skipper

Téléchargez les fichiers d'extension YouTube Intro Skipper 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

                        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!                    

Informations de Base sur l'Extension

Nom YouTube Intro Skipper YouTube Intro Skipper
ID bkidjicmopimhpebecifcejncihnfgjj
URL Officiel https://chromewebstore.google.com/detail/youtube-intro-skipper/bkidjicmopimhpebecifcejncihnfgjj
Description A Chrome extension for starting YouTube videos at predefined start time
Taille du Fichier 18.59 KB
Nombre d'Installations 196
Version Actuelle 0.1.0
Dernière Mise à Jour 2022-11-13
Date de Publication 2022-11-13
Évaluation 3.86/5 Total 7 Évaluations
Développeur hcwtam
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}