Deezer Reborn

Deezer Reborn

Goodbye chaotic purples, awful icon, and playful buttons. Embrace a cleaner Deezer design, where the music takes center stage. 🎵

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Deezer Reborn",
  "version": "0.41",
  "description": "Goodbye chaotic purples, awful icon, and playful buttons. Embrace a cleaner Deezer design, where the music takes center stage. 🎵",
  "permissions": [
    "storage",
    "tabs"
  ],
  "manifest_version": 3,
  "host_permissions": [
    "*://www.deezer.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo/deezer-16.png",
      "32": "images/logo/deezer-32.png",
      "48": "images/logo/deezer-48.png",
      "128": "images/logo/deezer-128.png"
    }
  },
  "icons": {
    "16": "images/logo/deezer-16.png",
    "32": "images/logo/deezer-32.png",
    "48": "images/logo/deezer-48.png",
    "128": "images/logo/deezer-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.deezer.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo/deezer-32.png",
        "styles/base.css",
        "styles/coverBackground.css",
        "styles/noPlaylists.css",
        "styles/noSidebar.css",
        "styles/enabledPlaylists.css",
        "styles/fonts-chrome.css",
        "styles/LeagueSpartan-Medium.ttf",
        "styles/Inter-Bold.woff2",
        "styles/Inter-Regular.woff2"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}