YouTube Timestamps
Shows YouTube timestamps from comments.
¿Qué es YouTube Timestamps?
YouTube Timestamps es una extensión de Chrome desarrollada por ris58h, y su función principal es "Shows YouTube timestamps from comments.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Timestamps
Descarga archivos de extensión YouTube Timestamps 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
It adds timestamps right on YouTube video timeline. Hover over them to preview corresponding comments. The extension shows timestamps that YouTube users leave in comments. It shows timestamps from the top 100 comments. If YouTube video doesn't have comments with timestamps or the timestamps are not in the top 100 comments the extension doesn't show anything. Timestamps are placed right on YouTube's video timeline. Hover a timestamp on the timeline to preview the corresponding comment. Key features: - Shows timestamps from YouTube comments on timeline. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Dark theme support. - Open Source https://github.com/ris58h/youtube-timestamps NOTE: To scroll a long comment preview scroll on the timestamp you are hovering over. LIMITATIONS: Only timestamps from the first 100 comments are shown.
Información Básica de la Extensión
Nombre | YouTube Timestamps |
ID | fjchmkcdmgeimkholkgodkejnikeklmh |
URL Oficial | https://chromewebstore.google.com/detail/youtube-timestamps/fjchmkcdmgeimkholkgodkejnikeklmh |
Descripción | Shows YouTube timestamps from comments. |
Tamaño del Archivo | 14.33 KB |
Cantidad de Instalaciones | 2,794 |
Versión Actual | 0.9.0 |
Última Actualización | 2023-10-02 |
Fecha de Publicación | 2020-02-24 |
Calificación | 3.93/5 Total de 29 Calificaciones |
Desarrollador | ris58h |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://ris58h.github.io/youtube-timestamps/ |
URL de la Página de Ayuda | https://github.com/ris58h/youtube-timestamps |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timestamps", "description": "Shows YouTube timestamps from comments.", "version": "0.9.0", "applications": { "gecko": { "id": "youtube-timestamps@ris58h" } }, "permissions": [ "https:\/\/www.youtube.com\/*", "webRequest", "webRequestBlocking" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ], "web_accessible_resources": [ "background\/youtubei.js" ], "background": { "page": "background\/background.html" } } |