Deezapper | Deezer Remote Control
Control your deezer web player from any device.
Deezapper | Deezer Remote Control क्या है?
Deezapper | Deezer Remote Control alexdu14 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control your deezer web player from any device."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Deezapper | Deezer Remote Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
गोपनीयता नीति पृष्ठ 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'" } |