Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Qu'est-ce que Enable Chapters for Youtube ?

Enable Chapters for Youtube est une extension Chrome développée par Robin van Nunen, et sa fonction principale est "This will enable the Chapters feature for Youtube.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Enable Chapters for Youtube

Téléchargez les fichiers d'extension Enable Chapters for Youtube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
URL Officiel https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
Description This will enable the Chapters feature for Youtube.
Taille du Fichier 18.49 KB
Nombre d'Installations 33
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-06-22
Date de Publication 2020-06-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur Robin van Nunen
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}