Deezapper | Deezer Remote Control
Control your deezer web player from any device.
What is Deezapper | Deezer Remote Control?
Deezapper | Deezer Remote Control is a Chrome extension developed by alexdu14, and its main feature is "Control your deezer web player from any device.".
Extension Screenshots
Download Deezapper | Deezer Remote Control Extension CRX File
Download Deezapper | Deezer Remote Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | kaklgpgemfmolohjpjbodjigkoedehkl |
Official URL | https://chrome.google.com/webstore/detail/deezapper-deezer-remote-c/kaklgpgemfmolohjpjbodjigkoedehkl |
Description | Control your deezer web player from any device. |
File Size | 177 KB |
Installation Count | 322 |
Current Version | 0.1.6 |
Last Updated | 2019-05-31 |
Publish Date | 2019-05-30 |
Rating | 2.85/5 Total 13 Ratings |
Developer | alexdu14 |
Payment Type | free |
Extension Website | https://deezapper.firebaseapp.com/serverPortal |
Privacy Policy Page URL | https://www.iubenda.com/privacy-policy/78932865 |
Supported Languages | 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'" } |