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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้านโยบายความเป็นส่วนตัว | 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'" } |