Water for Spotify

Water for Spotify

A cleaner UI for the Spotify web player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Water for Spotify",
  "version": "0.1.2",
  "description": "A cleaner UI for the Spotify web player.",
  "icons": {
    "128": "/images/water.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "css": [
        "/styles.css"
      ],
      "js": [
        "/jquery-3.4.1.min.js",
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "*.css",
    "*.png",
    "*.cur"
  ]
}