Youtube Now Playing Description
Displays now playing song when there's a timestamped tracklist in the description
O que é Youtube Now Playing Description?
Youtube Now Playing Description é uma extensão do Chrome desenvolvida por Kevin Leutzinger, e sua principal característica é "Displays now playing song when there's a timestamped tracklist in the description".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Now Playing Description
Baixe arquivos de extensão Youtube Now Playing Description 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
Finds the times of tracks in the description and shows which song is currently playing. Also allows skipping forward and back. Very useful for soundtracks, full albums, and other compilations.
Informações Básicas da Extensão
Nome | Youtube Now Playing Description |
ID | cclaiidhllljekopicenflhhkdkckkbl |
URL Oficial | https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl |
Descrição | Displays now playing song when there's a timestamped tracklist in the description |
Tamanho do Arquivo | 693 KB |
Contagem de Instalações | 14 |
Versão Atual | 0.1 |
Última Atualização | 2018-02-16 |
Data de Publicação | 2018-02-15 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Kevin Leutzinger |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Now Playing Description", "description": "Displays now playing song when there's a timestamped tracklist in the description", "version": "0.1", "manifest_version": 2, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "\/icons\/icon.png" }, "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "main.js" ], "run_at": "document_start" } ] } |