YouTube Timestamps to Playlist
This extension creates a playlist from time tags on a YouTube page
O que é YouTube Timestamps to Playlist?
YouTube Timestamps to Playlist é uma extensão do Chrome desenvolvida por hagabaka, e sua principal característica é "This extension creates a playlist from time tags on a YouTube page".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Timestamps to Playlist
Baixe arquivos de extensão YouTube Timestamps to Playlist 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
When viewing a video on YouTube containing multiple songs, this extension looks for a list of "time tags", for example "0:40 Symphony No. 5 in C Minor", and builds a playlist. You can open the playlist with one click, and easily change to a different song or seek within the song. It also displays a notification when a new song starts playing.
Informações Básicas da Extensão
Nome | YouTube Timestamps to Playlist |
ID | jmjgdfollcmomdjljhjkcenehcgbiogm |
URL Oficial | https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm |
Descrição | This extension creates a playlist from time tags on a YouTube page |
Tamanho do Arquivo | 375 KB |
Contagem de Instalações | 271 |
Versão Atual | 1.1 |
Última Atualização | 2017-11-27 |
Data de Publicação | 2017-11-27 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | hagabaka |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/hagabaka/youtube-timestamps-to-playlist |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timestamps to Playlist", "description": "This extension creates a playlist from time tags on a YouTube page", "version": "1.1", "icons": { "128": "icon128.png", "48": "icon48.png" }, "background": { "scripts": [ "common.js", "background.js" ] }, "page_action": { "default_icon": "icon48.png", "default_title": "Playlist", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "common.js", "content-script.js" ] } ], "permissions": [ "notifications" ] } |