YouTube Intro Skipper

A Chrome extension for starting YouTube videos at predefined start time

O que é YouTube Intro Skipper?

YouTube Intro Skipper é uma extensão do Chrome desenvolvida por hcwtam, e sua principal característica é "A Chrome extension for starting YouTube videos at predefined start time".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Intro Skipper

Baixe arquivos de extensão YouTube Intro Skipper 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

                        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!                    

Informações Básicas da Extensão

Nome YouTube Intro Skipper YouTube Intro Skipper
ID bkidjicmopimhpebecifcejncihnfgjj
URL Oficial https://chromewebstore.google.com/detail/youtube-intro-skipper/bkidjicmopimhpebecifcejncihnfgjj
Descrição A Chrome extension for starting YouTube videos at predefined start time
Tamanho do Arquivo 18.59 KB
Contagem de Instalações 196
Versão Atual 0.1.0
Última Atualização 2022-11-13
Data de Publicação 2022-11-13
Classificação 3.86/5 Total de 7 Avaliações
Desenvolvedor hcwtam
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}