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.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα 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'"
}