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'" } |