Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Co to jest Enable Chapters for Youtube?

Enable Chapters for Youtube to rozszerzenie Chrome opracowane przez Robin van Nunen, a jego główną funkcją jest „This will enable the Chapters feature for Youtube.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Enable Chapters for Youtube

Pobierz pliki rozszerzeń Enable Chapters for Youtube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
Oficjalny URL https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
Opis This will enable the Chapters feature for Youtube.
Rozmiar pliku 18.49 KB
Liczba instalacji 33
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-06-22
Data Publikacji 2020-06-22
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Robin van Nunen
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}