Youtube Now Playing Description
Displays now playing song when there's a timestamped tracklist in the description
Co to jest Youtube Now Playing Description?
Youtube Now Playing Description to rozszerzenie Chrome opracowane przez Kevin Leutzinger, a jego główną funkcją jest „Displays now playing song when there's a timestamped tracklist in the description”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube Now Playing Description
Pobierz pliki rozszerzeń Youtube Now Playing Description w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Youtube Now Playing Description |
ID | cclaiidhllljekopicenflhhkdkckkbl |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl |
Opis | Displays now playing song when there's a timestamped tracklist in the description |
Rozmiar pliku | 693 KB |
Liczba instalacji | 14 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2018-02-16 |
Data Publikacji | 2018-02-15 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Kevin Leutzinger |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |