YouTube Chapterize
Provides convenience functions to handle YouTube chapters.
Hvad er YouTube Chapterize?
YouTube Chapterize er en Chrome-udvidelse udviklet af blackway, og dens hovedfunktion er "Provides convenience functions to handle YouTube chapters.".
Udvidelsesskærmbilleder
Download YouTube Chapterize-udvidelses-CRX-fil
Download YouTube Chapterize-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | pndbjffcoioeikhcfofoefnlbiiidclh |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh |
Beskrivelse | Provides convenience functions to handle YouTube chapters. |
Filstørrelse | 10.32 KB |
Antal Installationer | 58 |
Nuværende Version | 2 |
Senest Opdateret | 2021-11-24 |
Udgivelsesdato | 2021-11-23 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | blackway |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |