SpotiPlayer

SpotiPlayer

Get A Spotify Web Player Extension Unofficial To Enjoy Music

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.0.1",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "declarativeContent",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.spotify.com/"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "128": "images/spotify-web-player-128x128.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/spotify-web-player-16x16.png",
    "48": "images/spotify-web-player-48x48.png",
    "128": "images/spotify-web-player-128x128.png"
  }
}