SpotifyTree

SpotifyTree

SpotifyTree is an extension that provides full access to playlists and saved albums in a tree view and controls the Spotify Web Player through a quick and easy popup player.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SpotifyTree",
  "author": "Andrey Shemetov",
  "description": "__MSG_addonDesc__",
  "version": "3.7",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "{05cb2f1a-a997-4ab7-befc-295381010f39}"
    }
  },
  "icons": {
    "16": "icons/SpotifyTree_16.png",
    "24": "icons/SpotifyTree_24.png",
    "32": "icons/SpotifyTree_32.png",
    "48": "icons/SpotifyTree_48.png",
    "64": "icons/SpotifyTree_64.png",
    "128": "icons/SpotifyTree_128.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/SpotifyTree_16.png",
      "24": "icons/SpotifyTree_24.png",
      "32": "icons/SpotifyTree_32.png",
      "48": "icons/SpotifyTree_48.png",
      "64": "icons/SpotifyTree_64.png",
      "128": "icons/SpotifyTree_128.png"
    },
    "default_title": "SpotifyTree",
    "default_popup": "popup/popup.html"
  },
  "commands": {
    "previous": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left"
      },
      "description": "Previous Track"
    },
    "next": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right"
      },
      "description": "Next Track"
    },
    "play_pause": {
      "suggested_key": {
        "default": "Ctrl+Shift+Down"
      },
      "description": "Play/Pause"
    },
    "previous_media": {
      "suggested_key": {
        "default": "MediaPrevTrack"
      },
      "description": "Media Previous Track"
    },
    "next_media": {
      "suggested_key": {
        "default": "MediaNextTrack"
      },
      "description": "Media Next Track"
    },
    "play_pause_media": {
      "suggested_key": {
        "default": "MediaPlayPause"
      },
      "description": "Media Play/Pause"
    },
    "notify": {
      "suggested_key": {
        "default": "Ctrl+Shift+Up"
      },
      "description": "Playback Info"
    }
  },
  "options_ui": {
    "browser_style": true,
    "page": "prefs/prefs.html"
  },
  "background": {
    "scripts": [
      "libs/spotify-web-api.js",
      "common.js",
      "utils.js",
      "background.js"
    ]
  },
  "permissions": [
    "https://*.spotify.com/*",
    "https://i.scdn.co/image/*",
    "tabs",
    "identity",
    "alarms",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "libs/spotify-web-api.js",
        "common.js",
        "utils.js",
        "content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "icons/*"
  ]
}