YT Skip Ads

This extension attempts to skip the YouTube ads automatically

¿Qué es YT Skip Ads?

YT Skip Ads es una extensión de Chrome desarrollada por Furqan, y su función principal es "This extension attempts to skip the YouTube ads automatically".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión YT Skip Ads

Descarga archivos de extensión YT Skip Ads en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks:
1. Auto-skips those 5 second ads on YouTube: 
YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 
2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.                    

Información Básica de la Extensión

Nombre YT Skip Ads YT Skip Ads
ID lahknfhfeikbpljolkheigimmcfhplga
URL Oficial https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga
Descripción This extension attempts to skip the YouTube ads automatically
Tamaño del Archivo 17.31 KB
Cantidad de Instalaciones 34
Versión Actual 1.0
Última Actualización 2021-09-14
Fecha de Publicación 2021-09-14
Desarrollador Furqan
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Skip Ads",
    "description": "This extension attempts to skip the YouTube ads automatically",
    "version": "1.0",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "YouTube Skip Ads"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "src\/css\/main.css"
            ],
            "js": [
                "src\/js\/dom-watcher.js"
            ],
            "run_at": "document_end"
        }
    ]
}