Deezapper | Deezer Remote Control
Control your deezer web player from any device.
什么是Deezapper | Deezer Remote Control?
Deezapper | Deezer Remote Control是由alexdu14开发的Chrome扩展程序,该扩展的主要功能是“Control your deezer web player from any device.”。
扩展截图
下载Deezapper | Deezer Remote Control扩展crx文件
下载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'" } |