Playlist Scraper

Scrapes playlist and exports song, artist, album in a Excel friendly file. Compatible Spotify and Google Play Music.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Playlist Scraper",
  "description": "Scrapes playlist and exports song, artist, album in a Excel friendly file. Compatible Spotify and Google Play Music.",
  "author": "Christopher Nguyen",
  "version": "1.2",
  "browser_action": {
    "default_icon": "scraperExtension128.png",
    "default_popup": "popup.html",
    "default_title": "Playlist Scraper"
  },
  "icons": {
    "16": "scraperExtension16.png",
    "48": "scraperExtension48.png",
    "128": "scraperExtension128.png"
  },
  "permissions": [
    "https://*/*",
    "http://*/*",
    "activeTab",
    "tabs"
  ]
}