Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Vad är Enable Chapters for Youtube?

Enable Chapters for Youtube är en Chrome-tillägg utvecklad av Robin van Nunen, och dess huvudfunktion är "This will enable the Chapters feature for Youtube.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Enable Chapters for Youtube-förlängningens CRX-fil

Ladda ner Enable Chapters for Youtube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
Officiell webbadress https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
Beskrivning This will enable the Chapters feature for Youtube.
Filstorlek 18.49 KB
Antal Installationer 33
Aktuell Version 1.0.0
Senast Uppdaterad 2020-06-22
Publiceringsdatum 2020-06-22
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Robin van Nunen
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}