My Playlist

My Playlist

The easiest way to add music to your personal playlist from YouTube and SoundCloud

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Playlist",
  "version": "1.5",
  "description": "The easiest way to add music to your personal playlist from YouTube and SoundCloud",
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "logo.png",
      "38": "logo.png"
    },
    "default_title": "My Playlist"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://soundcloud.com/*",
        "https://play.spotify.com/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "https://myplaylist.azurewebsites.net/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "jquery-ui.min.js",
        "player_api.js",
        "www-widgetapi.js",
        "api.js",
        "list.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "https://myplaylist.azurewebsites.net/*.png"
  ],
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "notifications",
    "contextMenus"
  ]
}