Zamify

Zamify

Zamify allows you to play your Shazams in Spotify, directly from the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zamify",
  "version": "1.0.2",
  "description": "Zamify allows you to play your Shazams in Spotify, directly from the browser.",
  "manifest_version": 2,
  "web_accessible_resources": [
    "/oauth2/*"
  ],
  "permissions": [
    "identity",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.shazam.com/*track/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "base.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}