Deezy Deezer Enhancer

Make deezer.com a more pleasant home

Τι είναι το Deezy Deezer Enhancer;

Το Deezy Deezer Enhancer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BetterWeb, και η κύρια λειτουργία του είναι "Make deezer.com a more pleasant home".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Deezy Deezer Enhancer

Λήψη αρχείων επέκτασης Deezy Deezer Enhancer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Deezy Deezer Enhancer hooks into the www.deezer.com website and adds some features that are missed for a more comfortable usage.

In detail the features are by now

* A persistent listening queue which will survive reloads and browser restarts.

* Tracks get removed from the queue after they have finished playing.

* Auto-save the listening queue to a playlist to sync it with other devices or for disaster recovery.

* Configurable keyboard shortcuts to fill playlists and the listening queue with a single key stroke.

* Use keyboard shortcuts to add whole albums, whole playlists, any users favorite tracks or artists top tracks to playlists or the listening queue. Shuffled or in order.

* "Stop after this song" menu entry in the listening queue.

* Links to music resources websites on artist and album pages. The linked sites are wikipedia.org, last.fm, discogs.com, musicbrainz.org, rateyourmusic.com and allmusic.com.

* Fan numbers on artist, album and playlist pages are turned into links. By click the fans are displayed.

* Support for media keys (Start, Stop, Play/Pause, Mute, Volume Up/Down).

* Linked label names in the album views to invoke a label search (atm only the search term is inserted into the search field, press  &  to perform the search).

* "Jump to Comments"-link at the top of playlist pages.

* tbc.                    

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

Όνομα Deezy Deezer Enhancer Deezy Deezer Enhancer
ID fhmkndacodeahnideghlhldgggpamfbb
Επίσημο URL https://chrome.google.com/webstore/detail/deezy-deezer-enhancer/fhmkndacodeahnideghlhldgggpamfbb
Περιγραφή Make deezer.com a more pleasant home
Μέγεθος Αρχείου 39.71 KB
Αριθμός Εγκαταστάσεων 141
Τρέχουσα Έκδοση 2.7.3
Τελευταία Ενημέρωση 2022-03-31
Ημερομηνία Δημοσίευσης 2018-12-28
Αξιολόγηση 4.17/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής BetterWeb
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Make deezer.com a more pleasant home",
    "manifest_version": 2,
    "name": "Deezy Deezer Enhancer",
    "short_name": "Deezy Deezer Enhancer",
    "version": "2.7.3",
    "icons": {
        "48": "assets\/deezy-48.png",
        "128": "assets\/deezy-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.deezer.com\/*"
            ],
            "js": [
                "deezy.js"
            ],
            "css": [
                "static\/deezy.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "injected.js",
        "deezy.css"
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/www.deezer.com\/*"
    ],
    "options_page": "static\/options.html"
}