Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Co je Enable Chapters for Youtube?

Enable Chapters for Youtube je rozšíření Chrome vyvinuté Robin van Nunen, a jeho hlavní funkcí je „This will enable the Chapters feature for Youtube.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Enable Chapters for Youtube

Stáhněte si soubory rozšíření Enable Chapters for Youtube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
Oficiální URL https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
Popis This will enable the Chapters feature for Youtube.
Velikost souboru 18.49 KB
Počet instalací 33
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-06-22
Datum Vydání 2020-06-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Robin van Nunen
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}