WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
ما هو WebNowPlaying؟
WebNowPlaying هو إضافة Chrome تم تطويرها بواسطة rulz-dev-group، والميزة الرئيسية لها هي "A browser extension that provides information and controls for media playing in the browser to external adapters.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة WebNowPlaying
قم بتنزيل ملفات الامتداد WebNowPlaying بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A browser extension that provides information and controls for media playing in the browser to external adapters. It detects information about the media being played, such as the title, artist, album, and more. This information can be utilized by external adapters to manage the media, including actions like pausing, skipping, adjusting the volume, and more. Documentation and Usage: https://wnp.keifufu.dev Adapters: - Rainmeter - OBS - CLI - Macro Deck 2 - Read the full list on GitHub: https://github.com/keifufu/WebNowPlaying Supports sites like: YouTube, Spotify, Soundcloud, and many others. Read the full list here: https://wnp.keifufu.dev/supported-sites
معلومات أساسية عن التمديد
الاسم | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
الوصف | A browser extension that provides information and controls for media playing in the browser to external adapters. |
حجم الملف | 86.93 KB |
عدد التثبيتات | 63,288 |
النسخة الحالية | 3.0.1 |
آخر تحديث | 2024-01-04 |
تاريخ النشر | 2019-10-06 |
تقييم | 4.53/5 مجموع تقييمات 60 |
المطور | rulz-dev-group |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://wnp.keifufu.dev |
عنوان صفحة المساعدة | https://github.com/keifufu/WebNowPlaying/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "WebNowPlaying", "short_name": "WebNowPlaying", "description": "A browser extension that provides information and controls for media playing in the browser to external adapters.", "version": "3.0.1", "icons": { "128": "icons\/icon-darkmode-128.png", "256": "icons\/icon-darkmode-256.png" }, "action": { "default_popup": "index.html", "default_title": "WebNowPlaying" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true } ], "background": { "service_worker": "sw.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "injected.js" ], "matches": [ "*:\/\/*\/*" ] } ] } |