Youtube Now Playing Description
Displays now playing song when there's a timestamped tracklist in the description
ما هو Youtube Now Playing Description؟
Youtube Now Playing Description هو إضافة Chrome تم تطويرها بواسطة Kevin Leutzinger، والميزة الرئيسية لها هي "Displays now playing song when there's a timestamped tracklist in the description".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Now Playing Description
قم بتنزيل ملفات الامتداد Youtube Now Playing Description بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Youtube Now Playing Description |
ID | cclaiidhllljekopicenflhhkdkckkbl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl |
الوصف | Displays now playing song when there's a timestamped tracklist in the description |
حجم الملف | 693 KB |
عدد التثبيتات | 14 |
النسخة الحالية | 0.1 |
آخر تحديث | 2018-02-16 |
تاريخ النشر | 2018-02-15 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Kevin Leutzinger |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } ] } |