Bandcamp to Spotify

Bandcamp to Spotify

Searches Spotify for an album on Bandcamp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bandcamp to Spotify",
  "description": "Searches Spotify for an album on Bandcamp",
  "version": "1.0",
  "browser_action": {
    "default_icon": "bc-to-spot-icon.png",
    "default_title": "Search Spotify?"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bandcamp.com/album/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}