Deezapper | Deezer Remote Control
Control your deezer web player from any device.
ما هو Deezapper | Deezer Remote Control؟
Deezapper | Deezer Remote Control هو إضافة Chrome تم تطويرها بواسطة alexdu14، والميزة الرئيسية لها هي "Control your deezer web player from any device.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Deezapper | Deezer Remote Control
قم بتنزيل ملفات الامتداد Deezapper | Deezer Remote Control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Control your web deezer application from an other device like mobile phones on a mobile web app. In this alpha version, you can use the basic control actions on the current deezer tracklist played. No needs to install anything on your mobile, just run https://deezapper.firebaseapp.com in your web browser. The github repo : https://github.com/alexandrepa/deezapper Privacy Policy : https://www.iubenda.com/privacy-policy/78932865
معلومات أساسية عن التمديد
الاسم | |
ID | kaklgpgemfmolohjpjbodjigkoedehkl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/deezapper-deezer-remote-c/kaklgpgemfmolohjpjbodjigkoedehkl |
الوصف | Control your deezer web player from any device. |
حجم الملف | 177 KB |
عدد التثبيتات | 322 |
النسخة الحالية | 0.1.6 |
آخر تحديث | 2019-05-31 |
تاريخ النشر | 2019-05-30 |
تقييم | 2.85/5 مجموع تقييمات 13 |
المطور | alexdu14 |
نوع الدفع | free |
موقع الإضافة | https://deezapper.firebaseapp.com/serverPortal |
عنوان صفحة سياسة الخصوصية | https://www.iubenda.com/privacy-policy/78932865 |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deezapper | Deezer Remote Control", "description": "Control your deezer web player from any device.", "version": "0.1.6", "icons": { "128": "deezer_icon.png" }, "browser_action": { "default_icon": "deezer_icon.png", "default_popup": "credentials.html" }, "background": { "page": "background.html" }, "permissions": [ "tabs", "storage", "identity", "*:\/\/*.deezer.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.deezer.com\/*" ], "js": [ "firebase.js", "deezer.js" ] } ], "web_accessible_resources": [ "play.js" ], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'" } |