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."입니다.

확장 프로그램 스크린샷

screenshot

Deezapper | Deezer Remote Control 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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                    

확장 프로그램 기본 정보

이름 Deezapper | Deezer Remote Control Deezapper | Deezer Remote Control
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'"
}