Music Link

Music Link

Automatically go to your preferred music streaming platform when following links to other platforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Music Link",
  "description": "Automatically go to your preferred music streaming platform when following links to other platforms.",
  "version": "1.3",
  "icons": {
    "48": "images/icon48.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "Music Link",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://api.song.link/"
  ]
}