Youtube Now Playing Description
Displays now playing song when there's a timestamped tracklist in the description
Wat is Youtube Now Playing Description?
Youtube Now Playing Description is een Chrome-extensie ontwikkeld door Kevin Leutzinger, en de belangrijkste functie is "Displays now playing song when there's a timestamped tracklist in the description".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Now Playing Description
Download Youtube Now Playing Description-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Youtube Now Playing Description |
ID | cclaiidhllljekopicenflhhkdkckkbl |
Officiële URL | https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl |
Beschrijving | Displays now playing song when there's a timestamped tracklist in the description |
Bestandsgrootte | 693 KB |
Aantal Installaties | 14 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2018-02-16 |
Publicatiedatum | 2018-02-15 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Kevin Leutzinger |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |