YouTube Chapterize
Provides convenience functions to handle YouTube chapters.
¿Qué es YouTube Chapterize?
YouTube Chapterize es una extensión de Chrome desarrollada por blackway, y su función principal es "Provides convenience functions to handle YouTube chapters.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Chapterize
Descarga archivos de extensión YouTube Chapterize en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | pndbjffcoioeikhcfofoefnlbiiidclh |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh |
Descripción | Provides convenience functions to handle YouTube chapters. |
Tamaño del Archivo | 10.32 KB |
Cantidad de Instalaciones | 58 |
Versión Actual | 2 |
Última Actualización | 2021-11-24 |
Fecha de Publicación | 2021-11-23 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | blackway |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |