YouTube Timestamps
Shows YouTube timestamps from comments.
O que é YouTube Timestamps?
YouTube Timestamps é uma extensão do Chrome desenvolvida por ris58h, e sua principal característica é "Shows YouTube timestamps from comments.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Timestamps
Baixe arquivos de extensão YouTube Timestamps no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | YouTube Timestamps |
ID | fjchmkcdmgeimkholkgodkejnikeklmh |
URL Oficial | https://chromewebstore.google.com/detail/youtube-timestamps/fjchmkcdmgeimkholkgodkejnikeklmh |
Descrição | Shows YouTube timestamps from comments. |
Tamanho do Arquivo | 14.33 KB |
Contagem de Instalações | 2,794 |
Versão Atual | 0.9.0 |
Última Atualização | 2023-10-02 |
Data de Publicação | 2020-02-24 |
Classificação | 3.93/5 Total de 29 Avaliações |
Desenvolvedor | ris58h |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://ris58h.github.io/youtube-timestamps/ |
URL da Página de Ajuda | https://github.com/ris58h/youtube-timestamps |
Idiomas Suportados | 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" } } |