Auto Skip

Skip Youtube ads automatically.

Was ist Auto Skip?

Auto Skip ist eine Chrome-Erweiterung, die von Kodebroz entwickelt wurde, und ihr Hauptmerkmal ist "Skip Youtube ads automatically.".

Erweiterungsscreenshots

screenshot

Auto Skip-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Skip-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Hey there,

Are you annoyed by sudden YouTube ads?

Guess what? Automates the process of clicking the "Skip Ad" button with Auto Skip Chrome Extension. 

it's not an ad blocker, it simply automates the process of clicking on the "Skip Ad" button on YouTube.

it's really handy when you are going through some playlist or chilling and watching your favorite YouTuber, no need to bother and click on "Skip Ad" button, simply sit back and enjoy the content without any interruption.

Hoping, this extension is making your YouTube experience better.

Happy Coding!

Happy YouTubing!                    

Grundlegende Informationen zur Erweiterung

Name Auto Skip Auto Skip
ID phnofgchbnhnblinddmnmkjhpifciimb
Offizielle URL https://chrome.google.com/webstore/detail/auto-skip/phnofgchbnhnblinddmnmkjhpifciimb
Beschreibung Skip Youtube ads automatically.
Dateigröße 11.39 KB
Installationsanzahl 69
Aktuelle Version 0.0.1
Letztes Update 2021-01-31
Veröffentlichungsdatum 2021-01-31
Entwickler Kodebroz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Skip",
    "version": "0.0.1",
    "description": "Skip Youtube ads automatically.",
    "icons": {
        "16": "images\/autoskip16.png",
        "32": "images\/autoskip32.png",
        "48": "images\/autoskip48.png",
        "128": "images\/autoskip128.png"
    },
    "manifest_version": 2,
    "author": "Kodebroz",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "kodebroz_auto_skip_content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}