Spotify Party

Spotify Party

A simple Chrome extension to listen to music on Spotify with your friends at the same time!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spotify Party",
  "version": "1.0",
  "description": "A simple Chrome extension to listen to music on Spotify with your friends at the same time!",
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent"
  ],
  "icons": {
    "128": "dim_icon.png"
  },
  "background": {
    "scripts": [
      "jquery-3.5.0.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": "active_icon.png"
  },
  "manifest_version": 2
}