Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

O que é Enable Chapters for Youtube?

Enable Chapters for Youtube é uma extensão do Chrome desenvolvida por Robin van Nunen, e sua principal característica é "This will enable the Chapters feature for Youtube.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Enable Chapters for Youtube

Baixe arquivos de extensão Enable Chapters for Youtube 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

                        The extension searches for chapter definitions in the video description or in the comment section and shows them in the video timeline. It works with any video and is very useful for i.e.: music sets and podcasts.

Example chapter definition:
00:00 - Intro
[02:00] Topic 1
(02:00) Topic 2
Topic 3 - 03:00                    

Informações Básicas da Extensão

Nome Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
URL Oficial https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
Descrição This will enable the Chapters feature for Youtube.
Tamanho do Arquivo 18.49 KB
Contagem de Instalações 33
Versão Atual 1.0.0
Última Atualização 2020-06-22
Data de Publicação 2020-06-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Robin van Nunen
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Enable Chapters for Youtube",
    "version": "1.0.0",
    "author": "Robin van Nunen",
    "description": "This will enable the Chapters feature for Youtube.",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "content.js"
    ]
}