Youtube Now Playing Description
Displays now playing song when there's a timestamped tracklist in the description
What is Youtube Now Playing Description?
Youtube Now Playing Description is a Chrome extension developed by Kevin Leutzinger, and its main feature is "Displays now playing song when there's a timestamped tracklist in the description".
Extension Screenshots
Download Youtube Now Playing Description Extension CRX File
Download Youtube Now Playing Description extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Youtube Now Playing Description |
ID | cclaiidhllljekopicenflhhkdkckkbl |
Official URL | https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl |
Description | Displays now playing song when there's a timestamped tracklist in the description |
File Size | 693 KB |
Installation Count | 14 |
Current Version | 0.1 |
Last Updated | 2018-02-16 |
Publish Date | 2018-02-15 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Kevin Leutzinger |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |