App for SMP

App for SMP

An easy-to-use and lite App for Spotify Music Player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.3",
  "manifest_version": 2,
  "name": "App for SMP",
  "permissions": [
    "storage"
  ],
  "short_name": "spotify-web",
  "web_accessible_resources": [
    "data/icons/*"
  ],
  "background": {
    "page": "lib/chrome/background.html"
  },
  "homepage_url": "http://mybrowseraddon.com/spotify-web.html",
  "description": "An easy-to-use and lite App for Spotify Music Player",
  "browser_action": {
    "default_title": "App for Spotify Music Player",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "data/panel/index.js"
      ],
      "css": [
        "data/panel/index.css"
      ],
      "matches": [
        "*://*.open.spotify.com/*"
      ]
    }
  ],
  "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"
  }
}