YouTube Chapters In Player
Shows YouTube chapters right in the player
¿Qué es YouTube Chapters In Player?
YouTube Chapters In Player es una extensión de Chrome desarrollada por ris58h, y su función principal es "Shows YouTube chapters right in the player".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Chapters In Player
Descarga archivos de extensión YouTube Chapters In Player 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
Just click on chapters button at the bottom of YouTube video player to show chapters list right in the player. Key features: - Shows chapters right in the player. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Previous/Next chapter buttons. - Key Moments support. - Chapters from pinned comment. - Open Source https://github.com/ris58h/youtube-chapters-in-player
Información Básica de la Extensión
Nombre | YouTube Chapters In Player |
ID | ikalbbakholajifblhnmbcffhmhnnohl |
URL Oficial | https://chromewebstore.google.com/detail/youtube-chapters-in-playe/ikalbbakholajifblhnmbcffhmhnnohl |
Descripción | Shows YouTube chapters right in the player |
Tamaño del Archivo | 14.15 KB |
Cantidad de Instalaciones | 955 |
Versión Actual | 0.3.2 |
Última Actualización | 2023-11-27 |
Fecha de Publicación | 2022-10-13 |
Calificación | 4.13/5 Total de 8 Calificaciones |
Desarrollador | ris58h |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://ris58h.github.io/youtube-chapters-in-player/ |
URL de la Página de Ayuda | https://github.com/ris58h/youtube-chapters-in-player/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Chapters In Player", "description": "Shows YouTube chapters right in the player", "version": "0.3.2", "applications": { "gecko": { "id": "youtube-chapters-in-player@ris58h" } }, "permissions": [ "webRequest", "declarativeNetRequest", "declarativeNetRequestWithHostAccess", "declarativeNetRequestFeedback" ], "host_permissions": [ "https:\/\/www.youtube.com\/" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ] } |