YouTube next chapter button

Adds a button to the YouTube player to fast-forward to the next section of the video

Was ist YouTube next chapter button?

YouTube next chapter button ist eine Chrome-Erweiterung, die von Alex Kozack entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to the YouTube player to fast-forward to the next section of the video".

Erweiterungsscreenshots

screenshot

YouTube next chapter button-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube next chapter button-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This will work for all videos that have been labeled with chapters.                    

Grundlegende Informationen zur Erweiterung

Name YouTube next chapter button YouTube next chapter button
ID dnhblfjgbcgeoiidbbhephfmhamfkeak
Offizielle URL https://chromewebstore.google.com/detail/youtube-next-chapter-butt/dnhblfjgbcgeoiidbbhephfmhamfkeak
Beschreibung Adds a button to the YouTube player to fast-forward to the next section of the video
Dateigröße 21.94 KB
Installationsanzahl 54
Aktuelle Version 2.0.2
Letztes Update 2023-10-23
Veröffentlichungsdatum 2023-07-27
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Alex Kozack
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.buymeacoffee.com/kozack
Hilfeseite URL https://github.com/cawa-93/youtube-forward-timeline/
Unterstützte Sprachen en,pl,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_APP_NAME__",
    "version": "2.0.2",
    "description": "__MSG_APP_DESCRIPTION__",
    "author": "Alex Kozack  (https:\/\/t.me\/kozack)",
    "homepage_url": "https:\/\/github.com\/cawa-93\/youtube-forward-timeline",
    "default_locale": "en",
    "icons": {
        "373": "YouTubeRewind.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{40ab1417-ef94-48d7-8726-6abe7d07b123}",
            "strict_min_version": "109.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}