Youtube Now Playing Description
Displays now playing song when there's a timestamped tracklist in the description
Cos'è Youtube Now Playing Description?
Youtube Now Playing Description è un'estensione di Chrome sviluppata da Kevin Leutzinger, e la sua funzione principale è "Displays now playing song when there's a timestamped tracklist in the description".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Now Playing Description
Scarica i file di estensione Youtube Now Playing Description in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Youtube Now Playing Description |
ID | cclaiidhllljekopicenflhhkdkckkbl |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl |
Descrizione | Displays now playing song when there's a timestamped tracklist in the description |
Dimensione del File | 693 KB |
Conteggio Installazioni | 14 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2018-02-16 |
Data di Pubblicazione | 2018-02-15 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Kevin Leutzinger |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |