Youtime
Youtime will pick up all the time stamps present in the comments and description for you
O que é Youtime?
Youtime é uma extensão do Chrome desenvolvida por Ashwath Vijayan, e sua principal característica é "Youtime will pick up all the time stamps present in the comments and description for you".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtime
Baixe arquivos de extensão Youtime 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
Youtime is a timestamp with description extractor for Youtube videos. There are times when you are listening to a playlist and wish there was an easier way to skip to the next song rather than going through the description and comments, and finding that one comment that has the timestamps in it. Well, look no further, Youtime can do that for you! Just load up the comments and hit the extension, you will find all the timestamps that exist in the comment and the description section. But wait up, its not just hour long playlists that Youtime helps, but also the short videos which has all the interesting sections mentioned in the comments by other users, you will be able to see that too.
Informações Básicas da Extensão
Nome | Youtime |
ID | ocaofghmcnmckbnlmgocfjemofblpgdk |
URL Oficial | https://chromewebstore.google.com/detail/youtime/ocaofghmcnmckbnlmgocfjemofblpgdk |
Descrição | Youtime will pick up all the time stamps present in the comments and description for you |
Tamanho do Arquivo | 49.5 KB |
Contagem de Instalações | 22 |
Versão Atual | 1.0 |
Última Atualização | 2020-07-08 |
Data de Publicação | 2020-07-08 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | Ashwath Vijayan |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/AshwathVS |
URL da Página de Ajuda | https://github.com/AshwathVS/youtime |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtime", "version": "1.0", "description": "Youtime will pick up all the time stamps present in the comments and description for you", "permissions": [ "webNavigation", "https:\/\/www.youtube.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html", "default_title": "Youtime - Switch to Youtube to use the extension", "default_icon": { "16": "images\/icon-disabled-16.png", "32": "images\/icon-disabled-32.png" } }, "web_accessible_resources": [ "script.js" ], "manifest_version": 2 } |