Skip for YouTube Playlists

Skip for YouTube Playlists

Skip to the next song on your playlists from anywhere in Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Skip for YouTube Playlists",
  "description": "Skip to the next song on your playlists from anywhere in Chrome.",
  "version": "0.0.0.2",
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "commands"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "commands": {
    "skip-forward": {
      "suggested_key": {
        "default": "Ctrl+Right"
      },
      "description": "Skip Forward",
      "global": true
    },
    "skip-back": {
      "suggested_key": {
        "default": "Ctrl+Left"
      },
      "description": "Skip Back",
      "global": true
    },
    "set-playlist": {
      "suggested_key": {
        "default": "Ctrl+Down"
      },
      "description": "Set Playlist Tab"
    }
  },
  "icons": {
    "19": "icons/skip19.png",
    "32": "icons/skip32.png",
    "48": "icons/skip48.png",
    "64": "icons/skip64.png",
    "128": "icons/skip128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/skip19.png"
    },
    "default_title": "Skip to next song"
  }
}