Setify, convert setlists to playlists

Setify, convert setlists to playlists

Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Setify, convert setlists to playlists",
  "description": "Export setlist.fm setlists as Spotify playlists! Works with setify.co to convert setlist.fm setlists to Spotify playlists.",
  "version": "0.4",
  "icons": {
    "16": "[email protected]",
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.setlist.fm/setlist/*/*/*.html"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "fonts/open.woff2",
    "fonts/fatface.woff2"
  ],
  "permissions": [
    "activeTab"
  ]
}