YouTube Skip Chapter
Automatically skip chapters of YouTube videos you don't want to watch.
¿Qué es YouTube Skip Chapter?
YouTube Skip Chapter es una extensión de Chrome desarrollada por skeetsdev, y su función principal es "Automatically skip chapters of YouTube videos you don't want to watch.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Skip Chapter
Descarga archivos de extensión YouTube Skip Chapter 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
Have you ever had a YouTube "mix" video that you really enjoy, except for just 2 or 3 songs in the middle? This extension allows you to skip just what you want to automatically by defining "skip words". If these words are found in a YouTube video's chapter title, that chapter will be skipped automatically. GitHub: https://github.com/skeets23/YouTube-Skip-Chapter-Chrome-Ext
Información Básica de la Extensión
Nombre | YouTube Skip Chapter |
ID | cjpkoghfjpkoapnmkppphegcmchghjdn |
URL Oficial | https://chromewebstore.google.com/detail/youtube-skip-chapter/cjpkoghfjpkoapnmkppphegcmchghjdn |
Descripción | Automatically skip chapters of YouTube videos you don't want to watch. |
Tamaño del Archivo | 103 KB |
Cantidad de Instalaciones | 26 |
Versión Actual | 1.0 |
Última Actualización | 2021-02-24 |
Fecha de Publicación | 2020-11-30 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | skeetsdev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Skip Chapter", "description": "Automatically skip chapters of YouTube videos you don't want to watch.", "version": "1.0", "browser_action": { "default_icon": "youtube_skip_chapter.png", "default_title": "Click here to edit skip words", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "*:\/\/*.youtube.com\/watch*", "storage" ] } |