YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
O que é YouTube Timestamp Bookmarker - Gravitate Webs?
YouTube Timestamp Bookmarker - Gravitate Webs é uma extensão do Chrome desenvolvida por gravitatewebs, e sua principal característica é "Saving timestamps in YouTube videos".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Timestamp Bookmarker - Gravitate Webs
Baixe arquivos de extensão YouTube Timestamp Bookmarker - Gravitate Webs 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
Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.
Informações Básicas da Extensão
Nome | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
URL Oficial | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
Descrição | Saving timestamps in YouTube videos |
Tamanho do Arquivo | 138 KB |
Contagem de Instalações | 31 |
Versão Atual | 0.1.0.0 |
Última Atualização | 2022-06-08 |
Data de Publicação | 2022-06-07 |
Desenvolvedor | gravitatewebs |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://gravitatewebs.com/ |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Bookmarker - Gravitate Webs", "version": "0.1.0.0", "description": "Saving timestamps in YouTube videos", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs", "default_popup": "popup.html" }, "manifest_version": 3 } |