YouTube Chapterize
Provides convenience functions to handle YouTube chapters.
Was ist YouTube Chapterize?
YouTube Chapterize ist eine Chrome-Erweiterung, die von blackway entwickelt wurde, und ihr Hauptmerkmal ist "Provides convenience functions to handle YouTube chapters.".
Erweiterungsscreenshots
YouTube Chapterize-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Chapterize-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
Use this extension if you want to shuffle the order of chapters. If you toggle the shuffle button at the top of the chapter list, the play time will shift to a random chapter when one chapter has finished playing. Features - You can shuffle chapters in a video.
Grundlegende Informationen zur Erweiterung
Name | |
ID | pndbjffcoioeikhcfofoefnlbiiidclh |
Offizielle URL | https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh |
Beschreibung | Provides convenience functions to handle YouTube chapters. |
Dateigröße | 10.32 KB |
Installationsanzahl | 58 |
Aktuelle Version | 2 |
Letztes Update | 2021-11-24 |
Veröffentlichungsdatum | 2021-11-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | blackway |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Chapterize", "description": "Provides convenience functions to handle YouTube chapters.", "version": "2", "manifest_version": 3, "permissions": [ "scripting" ], "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "inject.js" ] } ] } |