Playify

Playify

Opens Spotify links in other streaming services

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Opens Spotify links in other streaming services",
  "version": "3.1.0",
  "manifest_version": 2,
  "name": "Playify",
  "browser_action": {
    "default_icon": "static/icon-128.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "static/icon-16.png",
    "48": "static/icon-48.png",
    "128": "static/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.spotify.com/*",
    "storage",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}