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