Web Player

Web Player

Wrapper window for Spotify's web-player with easy access toggle, next and previous buttons

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.3.1",
  "name": "Web Player",
  "description": "Wrapper window for Spotify's web-player with easy access toggle, next and previous buttons",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png"
  },
  "homepage_url": "https://add0n.com/spotify-player.html",
  "permissions": [
    "storage",
    "tabs",
    "*://open.spotify.com/*"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://open.spotify.com/*"
      ],
      "js": [
        "data/inject.js"
      ]
    }
  ]
}