Paradify - Youtube to Spotify

Paradify - Youtube to Spotify

The easiest way to get a song from YouTube to Spotify by one-click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Paradify - Youtube to Spotify",
  "short_name": "Paradify",
  "description": "The easiest way to get a song from YouTube to Spotify by one-click",
  "version": "11.0.1",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://www.paradify.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "16": "media/16.png",
    "48": "media/48.png",
    "128": "media/128.png"
  },
  "action": {
    "default_title": "Paradify - YouTube To Spotify"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "media/*"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    },
    {
      "resources": [
        "iframeSearchResult.*"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "commands": {
    "add-to-spotify": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      },
      "description": "Add to Spotify"
    }
  },
  "externally_connectable": {
    "matches": [
      "https://www.paradify.com/*"
    ]
  }
}