Spotify Cursor Pointer

Spotify Cursor Pointer

Changes the mouse cursor to Pointer when you hover over the Play buttons in 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": "Spotify Cursor Pointer",
  "version": "1.0",
  "description": "Changes the mouse cursor to Pointer when you hover over the Play buttons in the Spotify Web Player.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "css": [
        "cursor_pointer.css"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ]
    }
  ]
}