Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

Τι είναι το Enable Chapters for Youtube;

Το Enable Chapters for Youtube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Robin van Nunen, και η κύρια λειτουργία του είναι "This will enable the Chapters feature for Youtube.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Enable Chapters for Youtube

Λήψη αρχείων επέκτασης Enable Chapters for Youtube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
Επίσημο URL https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
Περιγραφή This will enable the Chapters feature for Youtube.
Μέγεθος Αρχείου 18.49 KB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2020-06-22
Ημερομηνία Δημοσίευσης 2020-06-22
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Robin van Nunen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}