Shuffify Controller

Shuffify Controller

Allows Shuffify to play songs through your Spotify app

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Shuffify Controller",
  "version": "1.2.0.1",
  "manifest_version": 2,
  "description": "Allows Shuffify to play songs through your Spotify app",
  "background": {
    "scripts": [
      "application.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://open.spotify.com/token",
    "https://shuffify.spotilocal.com:4370/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://shuffify.com/*",
        "http://www.shuffify.com/*",
        "http://spotifyshuffler.herokuapp.com/*",
        "http://spotifyreader.dev/*"
      ],
      "js": [
        "install_notice.js"
      ],
      "run_at": "document_start"
    }
  ]
}