Now Playing Pop-up for YouTube™
Shows pop-up with every new song YouTube plays.
ما هو Now Playing Pop-up for YouTube™؟
Now Playing Pop-up for YouTube™ هو إضافة Chrome تم تطويرها بواسطة Yuya Tanaka (ypresto)، والميزة الرئيسية لها هي "Shows pop-up with every new song YouTube plays.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Now Playing Pop-up for YouTube™
قم بتنزيل ملفات الامتداد Now Playing Pop-up for YouTube™ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Notifies YouTube video title at every playback, like some music players (ex. Winamp or iTunes).
معلومات أساسية عن التمديد
الاسم | |
ID | hkkhehaonffoeecpfdlnmofodcllilnl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/now-playing-pop-up-for-yo/hkkhehaonffoeecpfdlnmofodcllilnl |
الوصف | Shows pop-up with every new song YouTube plays. |
حجم الملف | 19.93 KB |
عدد التثبيتات | 203 |
النسخة الحالية | 2.1 |
آخر تحديث | 2016-10-04 |
تاريخ النشر | 2016-10-04 |
تقييم | 2.71/5 مجموع تقييمات 7 |
المطور | Yuya Tanaka (ypresto) |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/ypresto |
اللغات المدعومة | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Now Playing Pop-up for YouTube\u2122", "version": "2.1", "description": "Shows pop-up with every new song YouTube plays.", "author": "Yuya Tanaka", "default_locale": "en", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/watch?*", "https:\/\/www.youtube.com\/watch?*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "notifications" ] } |