YouTube Skip Ads

YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'

O que é YouTube Skip Ads?

YouTube Skip Ads é uma extensão do Chrome desenvolvida por admin, e sua principal característica é "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Skip Ads

Baixe arquivos de extensão YouTube Skip Ads no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'                    

Informações Básicas da Extensão

Nome YouTube Skip Ads YouTube Skip Ads
ID jnhhfkebfgdllkmohmfhdmhkfooolbmb
URL Oficial https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb
Descrição YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
Tamanho do Arquivo 12.73 KB
Contagem de Instalações 3,053
Versão Atual 1.0.6
Última Atualização 2022-10-31
Data de Publicação 2022-10-31
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor admin
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Skip Ads",
    "short_name": "YouTube Skip Ads",
    "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'",
    "manifest_version": 3,
    "version": "1.0.6",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_yt.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "logob.png"
    }
}